From c94b13e2474b4a36341747786b9165024672e99e 2019-03-20 13:03:51 From: Wouter Overmeire Date: 2019-03-20 13:03:51 Subject: [PATCH] Fix docstring on how to pass arguments to nose --- diff --git a/IPython/testing/iptest.py b/IPython/testing/iptest.py index 5148878..14fd40b 100644 --- a/IPython/testing/iptest.py +++ b/IPython/testing/iptest.py @@ -8,9 +8,9 @@ itself from the command line. There are two ways of running this script: calling this script (with different arguments) recursively. This causes modules and package to be tested in different processes, using nose or trial where appropriate. -2. With the regular nose syntax, like `iptest -vvs IPython`. In this form +2. With the regular nose syntax, like `iptest IPython -- -vvs`. In this form the script simply calls nose, but with special command line flags and - plugins loaded. + plugins loaded. Options after `--` are passed to nose. """