diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-08 19:54:43 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-08 19:54:43 (GMT) |
commit | 7afaa88ebc7c4b1eec87c50989b599e2147e1247 (patch) | |
tree | 313ea458922479fe73594ed0f78d369b299d40a2 | |
parent | 49dc35ba730a2676a5a373fc50c05f3fb4feaf3d (diff) | |
download | cpython-7afaa88ebc7c4b1eec87c50989b599e2147e1247.zip cpython-7afaa88ebc7c4b1eec87c50989b599e2147e1247.tar.gz cpython-7afaa88ebc7c4b1eec87c50989b599e2147e1247.tar.bz2 |
Move test_unittest, test_doctest and test_doctest2 higher up in the test order
-rwxr-xr-x | Lib/test/regrtest.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 426a92c..6ef6663 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -478,6 +478,9 @@ STDTESTS = [ 'test_builtin', 'test_exceptions', 'test_types', + 'test_unittest', + 'test_doctest', + 'test_doctest2', ] NOTTESTS = [ |