diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-07-13 10:39:07 -0600 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-07-13 13:55:29 -0600 |
commit | 030ebff9b9a7484335bbbb83971a0eacde88835f (patch) | |
tree | 32392ee6405e341740b9c51a06b8534de4f66a71 /tox.ini | |
parent | 4f7d5eb13394ec2b13fe9e22855fa009579cb49b (diff) | |
download | numpy-030ebff9b9a7484335bbbb83971a0eacde88835f.tar.gz |
MAINT, TST: remove test-installed-numpy.py
* replace usage of test-installed-numpy.py
with runtests.py; they serve similar purposes
and the latter is more commonly used / maintained
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ # To run against a specific subset of Python versions, use: # tox -e py37 -# Extra arguments will be passed to test-installed-numpy.py. To run +# Extra arguments will be passed to runtests.py. To run # the full testsuite: # tox full # To run with extra verbosity: @@ -33,7 +33,7 @@ envlist = deps= pytest changedir={envdir} -commands={envpython} {toxinidir}/tools/test-installed-numpy.py --mode=full {posargs:} +commands={envpython} {toxinidir}/runtests.py --mode=full {posargs:} [testenv:py37-not-relaxed-strides] basepython=python3.7 @@ -43,4 +43,4 @@ env=NPY_RELAXED_STRIDES_CHECKING=0 # if you want it: [testenv:debug] basepython=python-dbg -commands=gdb --args {envpython} {toxinidir}/tools/test-installed-numpy.py --mode=full {posargs:} +commands=gdb --args {envpython} {toxinidir}/runtests.py --mode=full {posargs:} |