summaryrefslogtreecommitdiff
path: root/runtests.py
diff options
context:
space:
mode:
authorScott Sanderson <ssanderson@quantopian.com>2016-07-25 15:56:55 -0400
committerGitHub <noreply@github.com>2016-07-25 15:56:55 -0400
commit528c12c83433aab280e32099544dc53f5388e51c (patch)
tree6be37e83e2b23e07a9a80c27c833feb6c8905570 /runtests.py
parentbf40f60e09ddfc2b8d639c694d74041d4b242da2 (diff)
downloadpython-numpy-528c12c83433aab280e32099544dc53f5388e51c.tar.gz
python-numpy-528c12c83433aab280e32099544dc53f5388e51c.tar.bz2
python-numpy-528c12c83433aab280e32099544dc53f5388e51c.zip
STY: Use consistent variable convention.
Diffstat (limited to 'runtests.py')
-rwxr-xr-xruntests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtests.py b/runtests.py
index e728a92ae..b2d287d22 100755
--- a/runtests.py
+++ b/runtests.py
@@ -9,7 +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 -t {SAMPLE_TEST} -- {SAMPLE_NOSE_ARGUMENTS}
$ python runtests.py --ipython
$ python runtests.py --python somescript.py
$ python runtests.py --bench
@@ -36,7 +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"
+SAMPLE_NOSE_ARGUMENTS = "--pdb"
EXTRA_PATH = ['/usr/lib/ccache', '/usr/lib/f90cache',
'/usr/local/lib/ccache', '/usr/local/lib/f90cache']