[testenv]
description = perform primary checks (tests, style, types, coverage)
deps =
setenv =
PYTHONWARNDEFAULTENCODING = 1
SETUPTOOLS_ENFORCE_DEPRECATION = {env:SETUPTOOLS_ENFORCE_DEPRECATION:1}
commands =
pytest {posargs}
usedevelop = True
extras =
test
check
cover
enabler
type
core
pass_env =
SETUPTOOLS_USE_DISTUTILS
SETUPTOOLS_ENFORCE_DEPRECATION
PRE_BUILT_SETUPTOOLS_WHEEL
PRE_BUILT_SETUPTOOLS_SDIST
TIMEOUT_BACKEND_TEST
SSH_AUTH_SOCK
windir
HOME
[testenv:integration]
deps = {[testenv]deps}
extras = {[testenv]extras}
pass_env =
{[testenv]pass_env}
DOWNLOAD_PATH
setenv =
PROJECT_ROOT = {toxinidir}
commands =
pytest --integration {posargs:-vv --durations=10} setuptools/tests/integration
[testenv:diffcov]
description = run tests and check that diff from main is covered
deps =
{[testenv]deps}
diff-cover
commands =
pytest {posargs} --cov-report xml
diff-cover coverage.xml --compare-branch=origin/main --html-report diffcov.html
diff-cover coverage.xml --compare-branch=origin/main --fail-under=100
[testenv:docs]
description = build the documentation
extras =
doc
test
changedir = docs
deps =
importlib_resources < 6
commands =
python -m sphinx -W --keep-going . {toxinidir}/build/html
python -m sphinxlint
[testenv:finalize]
description = assemble changelog and tag a release
skip_install = True
deps =
towncrier
bump2version
jaraco.develop >= 7.23
importlib_resources < 6
pass_env = *
commands =
python tools/finalize.py
[testenv:vendor]
skip_install = True
deps =
path
jaraco.packaging
pyproject-hooks<1.1
uv
commands =
vendor: python -m tools.vendored
[testenv:generate-validation-code]
skip_install = True
deps =
validate-pyproject[all]==0.19
commands =
python -m tools.generate_validation_code
[testenv:release]
description = publish the package to PyPI and GitHub
skip_install = True
deps =
build
pyproject-hooks!=1.1
twine>=3
jaraco.develop>=7.1
pass_env =
TWINE_PASSWORD
GITHUB_TOKEN
setenv =
TWINE_USERNAME = {env:TWINE_USERNAME:__token__}
commands =
python -c "import shutil
python setup.py egg_info -Db "" saveopts
python -m build
python -m twine upload dist/*
python -m jaraco.develop.create-github-release