python-tuf/tox.ini
Jussi Kukkonen ba0842ff72 ngclient: Fix the lockfile handling in Windows
There does not seem to be a way around a ugly loop over open()...

Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
2025-08-24 15:40:13 +03:00

58 lines
1.7 KiB
INI

# Tox (https://tox.readthedocs.io/en/latest/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
isolated_build=true
envlist = lint,docs,py
skipsdist = true
[testenv]
commands =
python3 --version
python3 -m coverage run -m unittest -v
python3 -m coverage report -m --fail-under 96
deps =
-r{toxinidir}/requirements/test.txt
install_command = python3 -m pip install {opts} {packages}
# Workaround https://github.com/tox-dev/tox/issues/2801 (python3 not allowed in Windows)
allowlist_externals = python3
# Develop test env to run tests against securesystemslib's main branch
# Must to be invoked explicitly with, e.g. `tox -e with-sslib-main`
[testenv:with-sslib-main]
commands_pre =
python3 -m pip install --force-reinstall git+https://github.com/secure-systems-lab/securesystemslib.git@main#egg=securesystemslib[crypto]
commands =
python3 -m coverage run -m unittest
python3 -m coverage report -m
[testenv:lint]
deps =
-r{toxinidir}/requirements/lint.txt
lint_dirs = tuf examples tests verify_release .github/scripts
passenv = RUFF_OUTPUT_FORMAT
commands =
ruff check {[testenv:lint]lint_dirs}
ruff format --diff {[testenv:lint]lint_dirs}
mypy {[testenv:lint]lint_dirs}
zizmor -q .
[testenv:fix]
deps = {[testenv:lint]deps}
commands =
ruff check --fix {[testenv:lint]lint_dirs}
ruff format {[testenv:lint]lint_dirs}
[testenv:docs]
deps =
-r{toxinidir}/requirements/docs.txt
commands =
sphinx-build --fail-on-warning --quiet --builder html docs docs/build/html