summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Sanderson <ssanderson@quantopian.com>2016-07-23 14:52:57 -0400
committerScott Sanderson <ssanderson@quantopian.com>2016-07-23 16:35:28 -0400
commitb312137d6fb37bd8e81cc18ae9a642b4aada4c4b (patch)
tree9214689c24b02ff0129bb39737e4545e2f8581c2
parent56d0c26903a28d8bc5de6c6ef313c23157159bb0 (diff)
downloadnumpy-b312137d6fb37bd8e81cc18ae9a642b4aada4c4b.tar.gz
DOC: Add example to runtests usage doc.
-rwxr-xr-xruntests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtests.py b/runtests.py
index 8d1758e34..e728a92ae 100755
--- a/runtests.py
+++ b/runtests.py
@@ -9,6 +9,7 @@ Examples::
$ python runtests.py
$ python runtests.py -s {SAMPLE_SUBMODULE}
$ python runtests.py -t {SAMPLE_TEST}
+ $ python runtests.py -t {SAMPLE_TEST} -- {ARGUMENTS_FOR_NOSE}
$ python runtests.py --ipython
$ python runtests.py --python somescript.py
$ python runtests.py --bench
@@ -35,6 +36,7 @@ PROJECT_MODULE = "numpy"
PROJECT_ROOT_FILES = ['numpy', 'LICENSE.txt', 'setup.py']
SAMPLE_TEST = "numpy/linalg/tests/test_linalg.py:test_byteorder_check"
SAMPLE_SUBMODULE = "linalg"
+ARGUMENTS_FOR_NOSE = "--pdb"
EXTRA_PATH = ['/usr/lib/ccache', '/usr/lib/f90cache',
'/usr/local/lib/ccache', '/usr/local/lib/f90cache']