forked from hgrecco/pint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
59 lines (47 loc) · 951 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 = py27, py33, py34, numpy27, numpy33, numpy34,
py27u,py33u,py34u,numpy27u,numpy33u,numpy34u
[testenv]
deps = coverage
commands = coverage run -p --source=pint setup.py test
setenv=
COVERAGE_FILE=.coverage.{envname}
[testenv:numpy27]
basepython=python2.7
deps = numpy
coverage
[testenv:numpy33]
basepython=python3.3
deps = numpy
coverage
[testenv:numpy34]
basepython=python3.4
deps = numpy
coverage
[testenv:py27u]
basepython=python2.7
deps = uncertainties
coverage
[testenv:py33u]
basepython=python3.3
deps = uncertainties
coverage
[testenv:py34u]
basepython=python3.4
deps = uncertainties
coverage
[testenv:numpy27u]
basepython=python2.7
deps = numpy
uncertainties
coverage
[testenv:numpy33u]
basepython=python3.3
deps = numpy
uncertainties
coverage
[testenv:numpy34u]
basepython=python3.4
deps = numpy
uncertainties
coverage