[Python-checkins] r42277 - sandbox/trunk/emailpkg/3.1/testall.py

barry.warsaw python-checkins at python.org
Thu Feb 9 04:06:24 CET 2006


Author: barry.warsaw
Date: Thu Feb  9 04:06:24 2006
New Revision: 42277

Modified:
   sandbox/trunk/emailpkg/3.1/testall.py
Log:
Add the parallel tests using the PEP 8 names.


Modified: sandbox/trunk/emailpkg/3.1/testall.py
==============================================================================
--- sandbox/trunk/emailpkg/3.1/testall.py	(original)
+++ sandbox/trunk/emailpkg/3.1/testall.py	Thu Feb  9 04:06:24 2006
@@ -17,6 +17,7 @@
 import getopt
 
 from email.test import test_email
+from email.test import test_email_renamed
 
 from test.test_support import TestSkipped
 try:
@@ -27,6 +28,7 @@
 # See if we have the Japanese codecs package installed
 try:
     from email.test import test_email_codecs
+    from email.test import test_email_codecs_renamed
 except TestSkipped:
     test_email_codecs = None
 
@@ -35,8 +37,10 @@
 def suite():
     suite = unittest.TestSuite()
     suite.addTest(test_email.suite())
+    suite.addTest(test_email_renamed.suite())
     if test_email_codecs is not None:
         suite.addTest(test_email_codecs.suite())
+        suite.addTest(test_email_codecs_renamed.suite())
     if test_email_torture is not None:
         suite.addTest(test_email_torture.suite())
     return suite


More information about the Python-checkins mailing list