forked from circus-tent/circus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
59 lines (47 loc) · 894 Bytes
/
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
59
[tox]
envlist = py26,py26-no-gevent,py27,py27-no-gevent,py34,py35,py36,py37,flake8,docs
[testenv:py26]
deps =
{[testenv]deps}
gevent<1.2
unittest2
[testenv:py26-no-gevent]
deps =
{[testenv]deps}
unittest2
[testenv:py27]
passenv = PWD TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
deps =
{[testenv]deps}
nose-cov
coverage
coveralls
gevent
circus-web
commands =
nosetests -vs --with-coverage --cover-package=circus circus/tests
coveralls
[testenv]
passenv = PWD
deps =
nose
mock
PyYAML
six
tornado>=3.0,<5.0
pyzmq>=13.1.0,<17.0
setenv =
TESTING=1
PYTHONHASHSEED=random
PYTHONUNBUFFERED=1
commands =
nosetests -vs circus/tests
[testenv:docs]
whitelist_externals = make
deps =
sphinx
mozilla-sphinx-theme
commands = make -C docs html
[testenv:flake8]
deps = flake8==2.1.0
commands = flake8 circus