[Python-Dev] [Python-checkins] r87296 - python/branches/py3k/Doc/library/test.rst (original) (raw)
Michael Foord fuzzyman at voidspace.org.uk
Thu Dec 16 01:35:59 CET 2010
- Previous message: [Python-Dev] Remove HTTP 0.9 support
- Next message: [Python-Dev] [Python-checkins] r87296 - python/branches/py3k/Doc/library/test.rst
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 16 December 2010 00:23, eric.araujo <python-checkins at python.org> wrote:
Author: eric.araujo Date: Thu Dec 16 01:23:30 2010 New Revision: 87296
Log: Advertise “python -m” instead of direct filename.
Modified: python/branches/py3k/Doc/library/test.rst Modified: python/branches/py3k/Doc/library/test.rst ============================================================================== --- python/branches/py3k/Doc/library/test.rst (original) +++ python/branches/py3k/Doc/library/test.rst Thu Dec 16 01:23:30 2010 @@ -168,14 +168,14 @@ Running :mod:
test.regrtest
directly allows what resources are available for tests to use to be set. You do this by using the-u
command-line -option. Run :program:python regrtest.py -uall
to turn on all +option. Run :program:python -m regrtest -uall
to turn on all
Shouldn't this be python -m test.regrtest
, or even just python -m test
?
Michael
resources; specifying
all
as an option for-u
enables all possible resources. If all but one resource is desired (a more common case), a comma-separated list of resources that are not desired may be listed after -all
. The command :program:python regrtest.py -uall,-audio,-largefile
+all
. The command :program:python -m regrtest -uall,-audio,-largefile
will run :mod:test.regrtest
with all resources except theaudio
andlargefile
resources. For a list of all resources and more command-line -options, run :program:python regrtest.py -h
. +options, run :program:python -m regrtest -h
.Some other ways to execute the regression tests depend on what platform the tests are being executed on. On Unix, you can run :program:
make test
at the
Python-checkins mailing list Python-checkins at python.org http://mail.python.org/mailman/listinfo/python-checkins
-- http://www.voidspace.org.uk -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20101216/75ee45ba/attachment.html>
- Previous message: [Python-Dev] Remove HTTP 0.9 support
- Next message: [Python-Dev] [Python-checkins] r87296 - python/branches/py3k/Doc/library/test.rst
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]