rich/tox.ini

52 lines
1.0 KiB
INI
Raw Normal View History

2020-10-06 14:53:37 +00:00
[tox]
minversion = 4.0.0
2020-10-06 14:53:37 +00:00
envlist =
lint
docs
2024-09-08 11:24:13 +00:00
py{37,38,39,310,311,312,313}
2020-10-06 14:53:37 +00:00
isolated_build = True
[testenv]
description = Run unit-testing
deps =
2021-04-24 10:49:13 +00:00
poetry
2020-10-06 14:53:37 +00:00
# do not put * in passenv as it may break builds due to reduced isolation
passenv =
CI
GITHUB_*
HOME
PYTEST_*
SSH_AUTH_SOCK
TERM
setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONUNBUFFERED=1
commands =
2021-04-24 10:49:13 +00:00
poetry install
2020-10-06 14:53:37 +00:00
pytest --cov-report term-missing --cov=rich tests/ {posargs}
[testenv:lint]
description = Runs all linting tasks
commands_pre =
poetry install -vv --with lint
2020-10-06 14:53:37 +00:00
commands =
; poetry install --only dev
# as long GHA pipelines are not configured to use tox, we should call
# `make` in order to make testing similar and prevent divergence.
make format-check
make typecheck
deps =
poetry
2020-10-06 14:53:37 +00:00
skip_install = true
allowlist_externals =
make
poetry
2020-10-06 14:53:37 +00:00
[testenv:docs]
description = Builds documentation
changedir = docs
deps =
-r docs/requirements.txt
commands =
sphinx-build -M html source build