sshuttle/tox.ini
Brian May 1084c0f245
fix: drop Python 3.8 support
Python 3.8 support has been dropped upstream.
2025-02-06 09:02:11 +11:00

21 lines
370 B
INI

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