[Python-checkins] devinabox: People should be reading the dev guid and using Tools/scripts/run_tests.py.
brett.cannon
python-checkins at python.org
Tue Jan 24 20:01:59 CET 2012
http://hg.python.org/devinabox/rev/bbd2884126cc
changeset: 38:bbd2884126cc
user: Brett Cannon <brett at python.org>
date: Tue Jan 24 14:00:05 2012 -0500
summary:
People should be reading the dev guid and using Tools/scripts/run_tests.py.
files:
run_all_tests.py | 24 ------------------------
1 files changed, 0 insertions(+), 24 deletions(-)
diff --git a/run_all_tests.py b/run_all_tests.py
deleted file mode 100755
--- a/run_all_tests.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-"""Run CPython's test suite in the most rigorous way possible."""
-import multiprocessing
-import shutil
-import subprocess
-import sys
-import build_cpython
-
-
-def main():
- cmd = build_cpython.main()
- if cmd is None:
- print('CPython is not built')
- sys.exit(1)
- try:
- subprocess.call([cmd, '-W', 'default', '-bb', '-E', '-m', 'test', '-r',
- '-w', '-u', 'all', '-j',
- str(multiprocessing.cpu_count())])
- finally:
- shutil.rmtree('build')
-
-
-if __name__ == '__main__':
- main()
--
Repository URL: http://hg.python.org/devinabox
More information about the Python-checkins
mailing list