-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
45 lines (38 loc) · 794 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
[tox]
envlist = {py26,py27,py33,py34}-{test}-{deps,mindeps}
[testenv]
deps =
deps: numpy>=1.6.1
deps: cython>=0.19
mindeps: numpy==1.6.1
mindeps: cython==0.19
commands =
test: python -c "from sys import exit; import h5py; exit(0) if h5py.run_tests().wasSuccessful() else exit(1)"
changedir =
test: {toxworkdir}
[testenv:py26-test-deps]
deps =
unittest2
numpy>=1.6.1,<1.12,!=1.11.0
cython>=0.19
[testenv:py33-test-deps]
deps =
numpy>=1.6.1,<1.12
cython>=0.19
[testenv:py26-test-mindeps]
deps =
unittest2
numpy==1.6.1
cython==0.19
[testenv:py33-test-mindeps]
deps =
numpy==1.7
cython==0.19
[testenv:py34-test-mindeps]
deps =
numpy==1.9
cython==0.19
[testenv:py35-test-mindeps]
deps =
numpy==1.10
cython==0.19