forked from Supervisor/supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
34 lines (31 loc) · 627 Bytes
/
tox.ini
File metadata and controls
34 lines (31 loc) · 627 Bytes
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
[tox]
envlist =
cover,cover3,py26,py27,py32,py33,py34
[testenv]
commands =
python setup.py test -q
deps =
meld3 >= 1.0.0
mock >= 0.5.0
[testenv:cover]
basepython =
python2.6
commands =
python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
deps =
meld3 >= 1.0.0
mock >= 0.5.0
nose
coverage
nosexcover
[testenv:cover3]
basepython =
python3.3
commands =
python setup.py nosetests --with-xunit --with-xcoverage --cover-package=supervisor --cover-erase
deps =
meld3 >= 1.0.0
mock >= 0.5.0
nose
coverage
nosexcover