forked from hgrecco/pint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
99 lines (80 loc) · 1.56 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tox]
envlist = py26, py27, py32, py33, py34, numpy26, numpy27, numpy32, numpy33, numpy34,
py26u,py27u,py32u,py33u,py34u,numpy26u,numpy27u,numpy32u,numpy33u,numpy34u
[testenv]
deps = coverage
commands = coverage run -p --source=pint setup.py test
setenv=
COVERAGE_FILE=.coverage.{envname}
[testenv:py26]
basepython=python2.6
deps = unittest2
coverage
[testenv:numpy26]
basepython=python2.6
deps = numpy
unittest2
coverage
[testenv:numpy27]
basepython=python2.7
deps = numpy
coverage
[testenv:numpy32]
basepython=python3.2
deps = numpy
coverage
[testenv:numpy33]
basepython=python3.3
deps = numpy
coverage
[testenv:numpy34]
basepython=python3.4
deps = numpy
coverage
[testenv:py26u]
basepython=python2.6
deps = unittest2
uncertainties
coverage
[testenv:py27u]
basepython=python2.7
deps = uncertainties
coverage
[testenv:py32u]
basepython=python3.2
deps = uncertainties
coverage
[testenv:py33u]
basepython=python3.3
deps = uncertainties
coverage
[testenv:py34u]
basepython=python3.4
deps = uncertainties
coverage
[testenv:numpy26u]
basepython=python2.6
deps = numpy
unittest2
uncertainties
coverage
[testenv:numpy27u]
basepython=python2.7
deps = numpy
uncertainties
coverage
[testenv:numpy32u]
basepython=python3.2
deps = numpy
uncertainties
coverage
[testenv:numpy33u]
basepython=python3.3
deps = numpy
uncertainties
coverage
[testenv:numpy34u]
basepython=python3.4
deps = numpy
uncertainties
coverage