forked from hgrecco/pint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
77 lines (60 loc) · 1.16 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
[tox]
envlist = py26,py27,py32,py33,numpy26,numpy27,numpy32,numpy33,
py26u,py27u,py32u,py33u,numpy26u,numpy27u,numpy32u,numpy33u
[testenv]
deps = coverage
commands = coverage run -p --source=pint setup.py test
setenv=
COVERAGE_FILE=.coverage.{envname}
[testenv:py26]
deps = unittest2
coverage
[testenv:numpy26]
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:py26u]
deps = unittest2
uncertainties
coverage
[testenv:py27u]
deps = uncertainties
coverage
[testenv:py32u]
deps = uncertainties
coverage
[testenv:py33u]
deps = uncertainties
coverage
[testenv:numpy26u]
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