Commit d807b758 authored by Guido van Rossum's avatar Guido van Rossum

The re test suite is very slow on slower hosts.

To save time, only run the first and last 10 tests except in verbose mode.
parent c7736b9d
......@@ -122,6 +122,9 @@ except AssertionError:
from re_tests import *
if verbose:
print 'Running re_tests test suite'
else:
# To save time, only run the first and last 10 tests
tests = tests[:10] + tests[-10:]
for t in tests:
sys.stdout.flush()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment