sshuttle/tox.ini
masahitojp 254b8e7987 remove py35 from tox.ini
Because the supported version is python3.6 and above.
2021-01-17 15:42:24 +11:00

24 lines
417 B
INI

[tox]
downloadcache = {toxworkdir}/cache/
envlist =
py36,
py37,
py38,
py39,
[testenv]
basepython =
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
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