diff options
author | Mike Taves <mwtoews@gmail.com> | 2019-06-25 21:33:56 +1200 |
---|---|---|
committer | Mike Taves <mwtoews@gmail.com> | 2019-06-26 09:33:06 +1200 |
commit | 4ac8e8d7c73edfae52de723b0df04c8608324eb9 (patch) | |
tree | d3a754ee3334ecefc9915bd82ca8c0c3517726dd /tox.ini | |
parent | 0a00dc9d5a6c7ad87a8117bace5a6775b0d737df (diff) | |
download | numpy-4ac8e8d7c73edfae52de723b0df04c8608324eb9.tar.gz |
MAINT: Update tox for supported Python versions
Also replace 'nose' with 'pytest' for deps
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 16 |
1 files changed, 6 insertions, 10 deletions
@@ -13,7 +13,7 @@ # - Use pip to install the numpy sdist into the virtualenv # - Run the numpy tests # To run against a specific subset of Python versions, use: -# tox -e py27 +# tox -e py37 # Extra arguments will be passed to test-installed-numpy.py. To run # the full testsuite: @@ -26,21 +26,17 @@ [tox] envlist = - py27,py34,py35,py36, - py27-not-relaxed-strides,py34-not-relaxed-strides + py35,py36,py37, + py37-not-relaxed-strides [testenv] deps= - nose + pytest changedir={envdir} commands={envpython} {toxinidir}/tools/test-installed-numpy.py --mode=full {posargs:} -[testenv:py27-not-relaxed-strides] -basepython=python2.7 -env=NPY_RELAXED_STRIDES_CHECKING=0 - -[testenv:py34-not-relaxed-strides] -basepython=python3.4 +[testenv:py37-not-relaxed-strides] +basepython=python3.7 env=NPY_RELAXED_STRIDES_CHECKING=0 # Not run by default. Set up the way you want then use 'tox -e debug' |