forked from h5py/h5py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
77 lines (71 loc) · 1.98 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,py34,py35,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,py34,py35,py36,py37,pypy}-{test}-{deps,mindeps},nightly,docs,check-manifest,checkreadme
[testenv]
deps =
py27-test: unittest2
deps: cython>=0.23
py{27,34,35,36,37}-deps: numpy>=1.7
mindeps: cython==0.23
py27-mindeps: numpy==1.7
py34-mindeps: numpy==1.9
py35-mindeps: numpy==1.10.0.post2
py36-mindeps: numpy==1.12
py37-mindeps: numpy==1.12
mpi4py: mpi4py>=1.3.1
test: pytest
test: pytest-cov
commands =
test: python {toxinidir}/ci/fix_paths.py {envsitepackagesdir}
test: python -m pytest --pyargs h5py --cov={envsitepackagesdir}/h5py --cov-config={toxinidir}/.coveragerc {posargs}
changedir =
test: {toxworkdir}
passenv =
HDF5_DIR
TOXPYTHON
setenv =
COVERAGE_FILE={toxinidir}/.coverage
# needed otherwise coverage cannot find the file when reporting
basepython =
pypy: {env:TOXPYTHON:pypy}
py27: {env:TOXPYTHON:python2.7}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}
py37: {env:TOXPYTHON:python3.7}
pip_pre =
pre: True
[testenv:nightly]
pip_pre = True
basepython = {env:TOXPYTHON:python3.8}
[testenv:docs]
skip_install=True
basepython = {env:TOXPYTHON:python}
changedir=docs
deps=
sphinx
commands=
sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:check-manifest]
skip_install=True
basepython = {env:TOXPYTHON:python}
deps=check-manifest
setenv =
CHECK_MANIFEST=true
commands=
check-manifest
[testenv:checkreadme]
skip_install=True
basepython = {env:TOXPYTHON:python}
deps=readme_renderer
commands=
python setup.py check -s -r
[testenv:pre-commit]
skip_install=True
basepython = {env:TOXPYTHON:python}
deps=pre-commit
passenv = HOMEPATH SSH_AUTH_SOCK
commands=
pre-commit run --all-files