mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-08 09:04:29 +01:00
9f27c1943b
* Drop 2.7 * Add 3.7 and 3.8
23 lines
397 B
INI
23 lines
397 B
INI
[tox]
|
|
downloadcache = {toxworkdir}/cache/
|
|
envlist =
|
|
py35,
|
|
py36,
|
|
py37,
|
|
py38,
|
|
|
|
[testenv]
|
|
basepython =
|
|
py36: python3.6
|
|
py37: python3.7
|
|
py38: python3.8
|
|
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
|