blob: 62ca63921a36df41c984996c1f83602c55f3b77a [file] [log] [blame]
[tox]
envlist =
fix
py311
py310
py39
py38
py37
pypy3
type
coverage
readme
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}/setup.cfg
_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=setup.cfg --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.20
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.982
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
coverage>=6.5
diff-cover>=7.0.1
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.1
changedir = {toxinidir}
commands =
python -m build -o {envtmpdir} .
twine check {envtmpdir}/*
[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)'
[testenv:docs]
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()))'
[pytest]
junit_family = xunit2