diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-08 19:58:46 +0000 |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-08 19:58:46 +0000 |
commit | 590af0a7c9b151e3d72ef7f5e436f7d55c8611d9 (patch) | |
tree | 56a57e023897b515868562f7a030057d76af43c7 | |
parent | 154bc7c9bdee408665afce867ea6cce8ec9ef6b6 (diff) | |
download | cpython-git-590af0a7c9b151e3d72ef7f5e436f7d55c8611d9.tar.gz |
Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctest2 higher up in the testing 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 4553838afc..f424f7b22b 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -474,6 +474,9 @@ STDTESTS = [ 'test_builtin', 'test_exceptions', 'test_types', + 'test_unittest', + 'test_doctest', + 'test_doctest2', ] NOTTESTS = [ |