mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-07 16:44:23 +01:00
6d36916f48
Fixes #716
22 lines
390 B
INI
22 lines
390 B
INI
[tox]
|
|
downloadcache = {toxworkdir}/cache/
|
|
envlist =
|
|
py38,
|
|
py39,
|
|
py310,
|
|
|
|
[testenv]
|
|
basepython =
|
|
py38: python3.8
|
|
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
|