Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 328b501

Browse files
committed
Clean up description of Tools/scripts/run_tests.py.
Also, add an entry for the script in Tools/scripts/README.
1 parent 8db645f commit 328b501

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

Tools/scripts/README

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ db2pickle.py Dump a database file to a pickle
1515
diff.py Print file diffs in context, unified, or ndiff formats
1616
dutree.py Format du(1) output as a tree sorted by size
1717
eptags.py Create Emacs TAGS file for Python modules
18-
find_recursionlimit.py Find the maximum recursion limit on this machine
18+
find_recursionlimit.py Find the maximum recursion limit on this machine
1919
finddiv.py A grep-like tool that looks for division operators
2020
findlinksto.py Recursively find symbolic links to a given path prefix
2121
findnocoding.py Find source files which need an encoding declaration
@@ -53,6 +53,7 @@ redemo.py Basic regular expression demonstration facility
5353
reindent.py Change .py files to use 4-space indents
5454
reindent-rst.py Fix-up reStructuredText file whitespace
5555
rgrep.py Reverse grep through a file (useful for big logfiles)
56+
run_tests.py Run the test suite with more sensible default options
5657
serve.py Small wsgiref-based web server, used in make serve in Doc
5758
suff.py Sort a list of files by suffix
5859
svneol.py Set svn:eol-style on all files in directory

Tools/scripts/run_tests.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""Run Python's test suite in a fast, rigorous way.
22
3-
The defaults are meant to be thorough but to skip certain resources are not
4-
used (by default) which can consume a lot of time and resources (e.g.,
5-
largefile) or can be distracting (e.g., audio and gui). These defaults
6-
can be overridden by simply passing a -u option to this script.
3+
The defaults are meant to be reasonably thorough, while skipping certain
4+
tests that can be time-consuming or resource-intensive (e.g. largefile),
5+
or distracting (e.g. audio and gui). These defaults can be overridden by
6+
simply passing a -u option to this script.
77
88
"""
99

0 commit comments

Comments
 (0)