diff options
author | Scott Sanderson <ssanderson@quantopian.com> | 2016-07-25 15:55:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-25 15:55:28 -0400 |
commit | bf40f60e09ddfc2b8d639c694d74041d4b242da2 (patch) | |
tree | f1fbe795037a310e9d0ad9568d58bf5dbd512055 /doc | |
parent | b312137d6fb37bd8e81cc18ae9a642b4aada4c4b (diff) | |
download | numpy-bf40f60e09ddfc2b8d639c694d74041d4b242da2.tar.gz |
DOC: Use a shorter example.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/dev/development_environment.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/dev/development_environment.rst b/doc/source/dev/development_environment.rst index cbc4e2a46..41e874362 100644 --- a/doc/source/dev/development_environment.rst +++ b/doc/source/dev/development_environment.rst @@ -37,7 +37,7 @@ arguments may be forwarded to the target embedded by ``runtests.py`` by passing the extra arguments after a bare ``--``. For example, to run a test method with the ``--pdb`` flag forwarded to nose, run the following:: - $ python runtests.py -t numpy/core/tests/test_ufunc.py:TestUfunc.test_sum -- --pdb + $ python runtests.py -t numpy/tests/test_scripts.py:test_f2py -- --pdb Using ``runtests.py`` is the recommended approach to running tests. There are also a number of alternatives to it, for example in-place |