2015-12-07 03:17:09 +01:00
|
|
|
[tox]
|
|
|
|
downloadcache = {toxworkdir}/cache/
|
|
|
|
envlist =
|
|
|
|
py27,
|
2015-12-05 04:40:26 +01:00
|
|
|
py34,
|
2015-12-07 03:17:09 +01:00
|
|
|
py35,
|
2018-03-16 08:27:50 +01:00
|
|
|
py36,
|
2019-02-10 23:59:13 +01:00
|
|
|
pypy,
|
2015-12-07 03:17:09 +01:00
|
|
|
|
|
|
|
[testenv]
|
|
|
|
basepython =
|
|
|
|
py27: python2.7
|
2015-12-05 04:40:26 +01:00
|
|
|
py34: python3.4
|
2015-12-07 03:17:09 +01:00
|
|
|
py35: python3.5
|
2018-03-16 08:27:50 +01:00
|
|
|
py36: python3.6
|
2019-02-10 23:59:13 +01:00
|
|
|
pypy: pypy
|
2015-12-07 03:17:09 +01:00
|
|
|
commands =
|
2019-02-10 23:59:13 +01:00
|
|
|
pip install -e .
|
|
|
|
# actual flake8 test
|
|
|
|
flake8 sshuttle tests
|
|
|
|
# flake8 complexity warnings
|
|
|
|
flake8 sshuttle tests --exit-zero --max-complexity=10
|
|
|
|
pytest
|
2015-12-07 03:17:09 +01:00
|
|
|
deps =
|
2018-03-16 08:27:50 +01:00
|
|
|
-rrequirements-tests.txt
|