sshuttle/tox.ini

23 lines
414 B
INI

[tox]
downloadcache = {toxworkdir}/cache/
envlist =
py38,
py39,
py310,
[testenv]
basepython =
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
commands =
pip install -e .
# actual flake8 test
flake8 sshuttle tests
# flake8 complexity warnings
flake8 sshuttle tests --exit-zero --max-complexity=10
pytest
deps =
-rrequirements-tests.txt