mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-03-15 00:29:19 +01:00
23 lines
414 B
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
|