We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0348e2f commit 150de0dCopy full SHA for 150de0d
tools/nipnost
@@ -10,7 +10,7 @@ To reproduce a standard ``nipy.test()`` run::
10
11
nipnost -A "not slow" /path/to/nipy/nipy
12
13
-To run without doctests, add the flag ``--without-doctests``.
+To run without doctests, add the flag ``--without-doctest``.
14
"""
15
16
import sys
@@ -23,7 +23,7 @@ if __name__ == '__main__':
23
prepare_imports()
24
argv = sys.argv[:] + [fpw_opt_str()]
25
if '--without-doctests' in argv:
26
- argv.remove('--without-doctests')
+ argv.remove('--without-doctest')
27
else:
28
argv.append('--with-nipydoctest')
29
nose.core.TestProgram(argv=argv, addplugins=[NipyDoctest(), KnownFailure()])
0 commit comments