From bf67964939c46f0ab84a5038f25604a990ab2b13 Mon Sep 17 00:00:00 2001 From: Kai Szuttor Date: Thu, 21 Mar 2019 13:09:50 +0100 Subject: [PATCH] testsuite: increase LB test verbosity. --- testsuite/python/lb.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/testsuite/python/lb.py b/testsuite/python/lb.py index 3b60157870f..9d824ff0a30 100644 --- a/testsuite/python/lb.py +++ b/testsuite/python/lb.py @@ -318,4 +318,8 @@ def test_viscous_coupling_higher_order_interpolation(self): if __name__ == "__main__": - ut.main() + suite = ut.TestSuite() + suite.addTests(ut.TestLoader().loadTestsFromTestCase(TestLBCPU)) + suite.addTests(ut.TestLoader().loadTestsFromTestCase(TestLBGPU)) + result = ut.TextTestRunner(verbosity=4).run(suite) + sys.exit(not result.wasSuccessful())