def test_suite(): suite = unittest.TestSuite() suite.addTests([ layered(robotsuite.RobotTestSuite("test_app.robot"), layer=PYRAMIDROBOTLAYER), ]) return suite
def test_suite(): suite = unittest.TestSuite() current_dir = os.path.abspath(os.path.dirname(__file__)) robot_dir = os.path.join(current_dir, 'robot') robot_tests = [ os.path.join('robot', doc) for doc in os.listdir(robot_dir) if doc.endswith('.robot') and doc.startswith('test_') ] for test in robot_tests: suite.addTests([ layered(robotsuite.RobotTestSuite(test), layer=ROBOT_LAYER), ]) return suite
def test_suite(): suite = unittest.TestSuite() current_dir = os.path.abspath(os.path.dirname(__file__)) robot_dir = os.path.join(current_dir, 'robot') robot_tests = [ os.path.join('robot', doc) for doc in os.listdir(robot_dir) if doc.endswith('.robot') and doc.startswith('test_') ] for test in robot_tests: suite.addTests([ layered(robotsuite.RobotTestSuite(test), layer=PYRAMIDROBOTLAYER), ]) return suite
def test_suite(): return unittest.TestSuite() # robot tests disabled, not maintained import robotsuite from pyramid_robot.layer import layered suite = unittest.TestSuite() current_dir = os.path.abspath(os.path.dirname(__file__)) robot_dir = os.path.join(current_dir, 'robot') robot_tests = [ os.path.join('robot', doc) for doc in os.listdir(robot_dir) if doc.endswith('.robot') and doc.startswith('test_') ] for test in robot_tests: suite.addTests([ layered(robotsuite.RobotTestSuite(test), layer=ROBOT_LAYER), ]) return suite