From cb39b9579a41ef4d24d72f0d1f4e04222316a3c4 Mon Sep 17 00:00:00 2001 From: axl89 Date: Thu, 26 May 2016 15:37:31 +0200 Subject: [PATCH] Increase verbosity for those strange build fails in PAN_2 --- tests/run_console_tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/run_console_tests.py b/tests/run_console_tests.py index a18bbdaae9..7cbef38c10 100755 --- a/tests/run_console_tests.py +++ b/tests/run_console_tests.py @@ -13,10 +13,10 @@ tests = a.discover(start_dir='console',pattern='PAN*.py') c = ArticaTestResult() tests.run(c) -print "Tests failed: %s" % (get_test_file(c.failures)) -print "Tests succeeded: %s" % (get_test_file(c.success)) -print "Tests skipped: %s" % (get_test_file(c.skipped)) -print "Tests with errors: %s" % (get_test_file(c.errors)) +print "Tests failed: %s" % c.failures +print "Tests succeeded: %s" % c.success +print "Tests skipped: %s" % c.skipped +print "Tests with errors: %s" % c.errors if (len(c.failures)+len(c.errors)+len(c.skipped)) != 0: exit(1)