This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author etukia
Recipients docs@python, etukia
Date 2012-01-07.12:14:47
SpamBayes Score 9.648737e-07
Marked as misclassified No
Message-id <1325938488.7.0.238559424001.issue13726@psf.upfronthosting.co.za>
In-reply-to
Content
./python -m test --help
-S/--slow       -- print the slowest 10 tests

-S is used to continue running tests after an aborted run.  It will
maintain the order a standard run (ie, this assumes -r is not used).
This is useful after the tests have prematurely stopped for some external
reason and you want to start running from where you left off rather
than starting from the beginning.

in Lib/test/regrtest.py

opts, args = getopt.getopt(sys.argv[1:], '...S...',
            [..., 'slow', ... , 'start=', ...])

for o, a in opts:
    elif o in ('-S', '--start'):
        start = a
    elif o in ('-S', '--slow'):
        print_slow = True

At the moment -S (no args) and --slow (no args) are the same, not what the documentation says and not how the code executes (-S goes with --start). Help says nothing about --start.

--slow or --start needs a new short opt, and corrected documentation.
History
Date User Action Args
2012-01-07 12:14:48etukiasetrecipients: + etukia, docs@python
2012-01-07 12:14:48etukiasetmessageid: <1325938488.7.0.238559424001.issue13726@psf.upfronthosting.co.za>
2012-01-07 12:14:47etukialinkissue13726 messages
2012-01-07 12:14:47etukiacreate