[CMF-checkins] CVS: Products/DCWorkflow/tests - test_all.py:1.5.26.1
Tres Seaver
tseaver at zope.com
Fri Apr 22 16:03:27 EDT 2005
Update of /cvs-repository/Products/DCWorkflow/tests
In directory cvs.zope.org:/tmp/cvs-serv29516/DCWorkflow/tests
Modified Files:
Tag: CMF-1_4-branch
test_all.py
Log Message:
- Suppress test duplication under 'bin/zopectl test'.
=== Products/DCWorkflow/tests/test_all.py 1.5 => 1.5.26.1 ===
--- Products/DCWorkflow/tests/test_all.py:1.5 Wed Jun 12 16:30:13 2002
+++ Products/DCWorkflow/tests/test_all.py Fri Apr 22 16:03:26 2005
@@ -2,8 +2,12 @@
import unittest
from Products.CMFCore.tests.base.utils import build_test_suite
-def test_suite():
+def suite():
return unittest.TestSuite()
+def test_suite():
+ # Just toilence the top-level test.py
+ return None
+
if __name__ == '__main__':
- unittest.main(defaultTest='test_suite')
+ unittest.main(defaultTest='suite')
More information about the CMF-checkins
mailing list