Clean up description of Tools/scripts/run_tests.py.

Also, add an entry for the script in Tools/scripts/README.
This commit is contained in:
Nadeem Vawda 2011-08-02 10:16:45 +02:00
parent 8db645f722
commit 328b5015a2
2 changed files with 6 additions and 5 deletions

View file

@ -53,6 +53,7 @@ redemo.py Basic regular expression demonstration facility
reindent.py Change .py files to use 4-space indents reindent.py Change .py files to use 4-space indents
reindent-rst.py Fix-up reStructuredText file whitespace reindent-rst.py Fix-up reStructuredText file whitespace
rgrep.py Reverse grep through a file (useful for big logfiles) rgrep.py Reverse grep through a file (useful for big logfiles)
run_tests.py Run the test suite with more sensible default options
serve.py Small wsgiref-based web server, used in make serve in Doc serve.py Small wsgiref-based web server, used in make serve in Doc
suff.py Sort a list of files by suffix suff.py Sort a list of files by suffix
svneol.py Set svn:eol-style on all files in directory svneol.py Set svn:eol-style on all files in directory

View file

@ -1,9 +1,9 @@
"""Run Python's test suite in a fast, rigorous way. """Run Python's test suite in a fast, rigorous way.
The defaults are meant to be thorough but to skip certain resources are not The defaults are meant to be reasonably thorough, while skipping certain
used (by default) which can consume a lot of time and resources (e.g., tests that can be time-consuming or resource-intensive (e.g. largefile),
largefile) or can be distracting (e.g., audio and gui). These defaults or distracting (e.g. audio and gui). These defaults can be overridden by
can be overridden by simply passing a -u option to this script. simply passing a -u option to this script.
""" """