forked from pyCGNS/pyCGNS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
77 lines (71 loc) · 1.71 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]
# We want an envlist like
# envlist = {py27,py36,pypy}-{test}-{deps,mindeps}-{,mpi4py}-{,pre},nightly,docs,check-manifest,checkreadme
# but we want to skip mpi and pre by default, so this envlist is below
envlist = {py27,py36,pypy}-{test}-{deps,mindeps},nightly,docs,check-manifest,checkreadme
[testenv]
deps =
py27-test: unittest2
deps: cython>=0.25
deps: future>=0.16.0
py{27,36}-deps: numpy>=1.7
mindeps: cython==0.25
mindeps: future==0.16.0
py27-mindeps: numpy==1.7
py36-mindeps: numpy==1.12
mpi4py: mpi4py>=1.3.1
deps: pkgconfig
mindeps: pkgconfig
commands =
test: python -c "from sys import exit; import CGNS; import CGNS.MAP; import CGNS.PAT.test as ptest; ptest.run(); import CGNS.VAL.test as vtest; vtest.run()"
changedir =
test: {toxworkdir}
passenv =
HDF5_DIR
TOXPYTHON
basepython =
pypy: {env:TOXPYTHON:pypy}
py27: {env:TOXPYTHON:python2.7}
py36: {env:TOXPYTHON:python3.6}
pip_pre =
pre: True
[testenv:nightly]
pip_pre = True
basepython = {env:TOXPYTHON:python3.7}
[testenv:docs]
skip_install=True
basepython = {env:TOXPYTHON:python}
whitelist_externals = /bin/bash
deps=
cython>=0.25
future>=0.16.0
numpy>=1.7
pkgconfig
sphinx
commands=
python setup.py build
/bin/bash doc/doc.sh
[testenv:check-manifest]
skip_install=True
basepython = {env:TOXPYTHON:python}
deps=
cython>=0.25
future>=0.16.0
numpy>=1.7
pkgconfig
check-manifest
setenv =
CHECK_MANIFEST=true
commands=
check-manifest
[testenv:checkreadme]
skip_install=True
basepython = {env:TOXPYTHON:python}
deps=
cython>=0.25
future>=0.16.0
numpy>=1.7
pkgconfig
readme_renderer
commands=
python setup.py check -s -r