summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2019-07-13 10:39:07 -0600
committerTyler Reddy <tyler.je.reddy@gmail.com>2019-07-13 13:55:29 -0600
commit030ebff9b9a7484335bbbb83971a0eacde88835f (patch)
tree32392ee6405e341740b9c51a06b8534de4f66a71 /tox.ini
parent4f7d5eb13394ec2b13fe9e22855fa009579cb49b (diff)
downloadnumpy-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.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 75229ed86..3223b9e1b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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:}