forked from eventlet/eventlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
58 lines (54 loc) · 1.59 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# The flake8 and pep8 sections just contain configuration for corresponding tools.
# Checkers are not run implicitly.
[flake8]
exclude = *.egg*,.env,.git,.hg,.tox,_*,build*,dist*,venv*,six.py,mock.py,eventlet/green/http/*,eventlet/support/dns/*,eventlet/support/monotonic.py
ignore = E261,W503
max-line-length = 101
[pep8]
count = 1
exclude = *.egg*,.env,.git,.hg,.tox,_*,build*,dist*,venv*,six.py,mock.py,eventlet/green/http/*,eventlet/support/dns/*,eventlet/support/monotonic.py
ignore = E261,W503
max-line-length = 101
show-source = 1
statistics = 1
[tox]
minversion=2.5
envlist =
pep8, py{26,27,33,34,35,36,py}-{selects,poll,epolls}
[testenv:pep8]
basepython = python2.7
setenv =
{[testenv]setenv}
deps =
pep8==1.5.6
commands =
pep8 benchmarks/ eventlet/ tests/
[testenv]
passenv = CI TRAVIS*
setenv =
PYTHONDONTWRITEBYTECODE = 1
selects: EVENTLET_HUB = selects
poll: EVENTLET_HUB = poll
epolls: EVENTLET_HUB = epolls
tox_cover_args = --with-coverage --cover-erase --cover-package=eventlet
basepython =
py26: python2.6
py27: python2.7
py33: python3.3
py34: python3.4
py35: python3.5
py36: python3.6
pypy: pypy
deps =
coverage==4.3.1
nose==1.3.7
setuptools==32.3.1
py{26,27}: subprocess32==3.2.7
py{26,27}-{selects,poll,epolls}: MySQL-python==1.2.5
py26-{selects,poll,epolls}: pyopenssl==0.13
py{27,33,34}-{selects,poll,epolls}: pyopenssl==16.2.0
{selects,poll,epolls}: psycopg2cffi-compat==1.1
{selects,poll,epolls}: pyzmq==13.1.0
commands =
nosetests --verbose {env:tox_cover_args} {posargs:tests/}
coverage xml -i