Skip to content

Commit

Permalink
Merge pull request #2622 from KaiSzuttor/lb_test
Browse files Browse the repository at this point in the history
Increase LB verbosity for CI debugging
  • Loading branch information
fweik authored Mar 21, 2019
2 parents 337cddf + a892bdd commit b25c014
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testsuite/python/lb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

0 comments on commit b25c014

Please sign in to comment.