diff options
Diffstat (limited to 'runtests.py')
-rwxr-xr-x | runtests.py | 2 |
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'] |