Commit 39a01179 authored by Julien Muchembled's avatar Julien Muchembled

Define testTaskReporting.test_suite to exclude ERP5*TestCase

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41253 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e738d5a6
......@@ -26,6 +26,7 @@
#
##############################################################################
import unittest
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5ReportTestCase
from Products.ERP5Type.tests.utils import reindex
import transaction
......@@ -327,3 +328,8 @@ class TestTaskReporting(ERP5ReportTestCase):
**{'person_module/Person_1': None,
'person_module/Person_2': None,
})
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestTaskReporting))
return suite
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