forked from circus-tent/circus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
84 lines (59 loc) · 1.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tox]
envlist = py27,flake8,docs,py26,py26-no-gevent,py27-no-gevent,py33,circus-web
[testenv:py32]
commands =
python -Wdefault -c 'import nose; nose.main()' -x circus/tests
[testenv:py33]
commands =
python -Wdefault -c 'import nose; nose.main()' -x circus/tests
[testenv:py26]
deps =
{[testenv]deps}
gevent
unittest2==0.5.1
commands =
nosetests -x circus/tests
[testenv:py26-no-gevent]
deps =
{[testenv]deps}
unittest2==0.5.1
commands =
nosetests -x circus/tests
[testenv:py27-no-gevent]
deps =
{[testenv]deps}
[testenv:py27]
deps =
{[testenv]deps}
nose-cov==1.6
coverage==3.7
randomize==0.9
gevent
commands =
nosetests --randomize -x --with-coverage --cover-package=circus circus/tests
coverage combine
coverage html
[testenv]
deps =
nose==1.3.3
mock==1.0.1
PyYAML==3.10
six==1.6.1
setenv =
TESTING=1
PYTHONHASHSEED=random
commands =
nosetests -x 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
[testenv:circus-web]
deps =
{[testenv]deps}
circus-web