diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-09-22 08:25:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-22 08:25:06 -0600 |
commit | a352b1acc229618b1ef3872f3f064a87ba9de8d3 (patch) | |
tree | 8084705c22f1d668e0ccbf0f61feb5bb603388e8 | |
parent | e5730e11b0448350cf2fd4cafc7204fdb9f6f79e (diff) | |
parent | 65525c14fceebfb7a5acbbd71fcfbccaff99f435 (diff) | |
download | numpy-a352b1acc229618b1ef3872f3f064a87ba9de8d3.tar.gz |
Merge pull request #14572 from seberg/runtests-help
DOC: Note runtests.py `-- -s` method to use pytests `-s`
-rwxr-xr-x | runtests.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtests.py b/runtests.py index 4a04f9563..c469f85d8 100755 --- a/runtests.py +++ b/runtests.py @@ -18,6 +18,10 @@ Run a debugger: $ gdb --args python runtests.py [...other args...] +Disable pytest capturing of output by using its '-s' option: + + $ python runtests.py -- -s + Generate C code coverage listing under build/lcov/: (requires http://ltp.sourceforge.net/coverage/lcov.php) |