Increase verbosity for those strange build fails in PAN_2
This commit is contained in:
parent
7f277e6be0
commit
2bbef62d6b
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue