blob: e63ab67f4ad26a8ac0def6b83632d36a6fb46b5d [file] [log] [blame]
[tox]
envlist =
fix
py311
py310
py39
py38
py37
pypy3
type
coverage
readme
docs
isolated_build = true
skip_missing_interpreters = true
minversion = 3.21
[testenv]
description = run the unit tests with pytest under {basepython}
passenv =
ANDROID_DATA
ANDROID_ROOT
setenv =
COVERAGE_FILE = {toxworkdir}/.coverage.{envname}
COVERAGE_PROCESS_START = {toxinidir}/pyproject.toml
_COVERAGE_SRC = {envsitepackagesdir}/platformdirs
extras =
test
commands =
pytest {tty:--color=yes} {posargs: \
--junitxml {toxworkdir}{/}junit.{envname}.xml --cov {envsitepackagesdir}{/}platformdirs \
--cov {toxinidir}{/}tests \
--cov-config=pyproject.toml --no-cov-on-fail --cov-report term-missing:skip-covered --cov-context=test \
--cov-report html:{envtmpdir}{/}htmlcov --cov-report xml:{toxworkdir}{/}coverage.{envname}.xml \
tests}
package = wheel
wheel_build_env = .pkg
[testenv:fix]
description = run static analysis and style check using flake8
passenv =
HOMEPATH
PROGRAMDATA
skip_install = true
deps =
pre-commit>=2.21
commands =
pre-commit run --all-files --show-diff-on-failure
[testenv:type]
description = run type check on code base
setenv =
{tty:MYPY_FORCE_COLOR = 1}
deps =
mypy==0.991
commands =
mypy --strict src
mypy --strict tests
[testenv:coverage]
description = combine coverage files and generate diff (against DIFF_AGAINST defaulting to origin/main)
passenv =
DIFF_AGAINST
setenv =
COVERAGE_FILE = {toxworkdir}/.coverage
skip_install = true
deps =
covdefaults>=2.2.2
coverage[toml]>=7.0.1
diff-cover>=7.3
extras =
parallel_show_output = true
commands =
coverage combine
coverage report --skip-covered --show-missing
coverage xml -o {toxworkdir}/coverage.xml
coverage html -d {toxworkdir}/htmlcov
diff-cover --compare-branch {env:DIFF_AGAINST:origin/main} {toxworkdir}/coverage.xml
depends =
py311
py310
py39
py38
py37
pypy3
[testenv:readme]
description = check that the long description is valid
passenv =
*
skip_install = true
deps =
build[virtualenv]>=0.9
twine>=4.0.2
changedir = {toxinidir}
commands =
python -m build -o {envtmpdir} .
twine check {envtmpdir}/*
[testenv:docs]
basepython = 3.10
extras =
docs
commands =
python -c 'import glob; import subprocess; subprocess.call(["proselint"] + glob.glob("docs/*.rst"))'
sphinx-build -d "{envtmpdir}/doctree" docs "{toxworkdir}/docs_out" --color -b html {posargs}
python -c 'import pathlib; print("documentation available under \{0\}".format((pathlib.Path(r"{toxworkdir}") / "docs_out" / "index.html").as_uri()))'
[testenv:dev]
description = generate a DEV environment
usedevelop = true
extras =
test
commands =
python -m pip list --format=columns
python -c 'import sys; print(sys.executable)'