mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-22 07:53:43 +01:00
a215f1b227
Automatic python 2.6 testing is becoming harder, especially as pytest 3.4.2 is unavailable for Python 2.6.
22 lines
459 B
INI
22 lines
459 B
INI
[tox]
|
|
downloadcache = {toxworkdir}/cache/
|
|
envlist =
|
|
py27,
|
|
py34,
|
|
py35,
|
|
py36,
|
|
|
|
[testenv]
|
|
basepython =
|
|
py26: python2.6
|
|
py27: python2.7
|
|
py34: python3.4
|
|
py35: python3.5
|
|
py36: python3.6
|
|
commands =
|
|
flake8 sshuttle --count --select=E901,E999,F821,F822,F823 --show-source --statistics
|
|
flake8 sshuttle --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
|
py.test
|
|
deps =
|
|
-rrequirements-tests.txt
|