def test_suite(): suite = unittest.TestSuite() for module in DOCTESTS: suite.addTests([ layered(DocTestSuite(module=module, optionflags=OPTIONFLAGS), layer=BIKA_FUNCTIONAL_TESTING), ]) return suite
def test_suite(): suite = unittest.TestSuite() for robot in robots: suite.addTests([ layered(robotsuite.RobotTestSuite(robot), layer=BIKA_ROBOT_TESTING), ]) return suite