functional_tests: exit with 1 if any test fails
This commit is contained in:
parent
6fd8834d9d
commit
8646bd0086
|
@ -133,3 +133,5 @@ if len(FAIL) == 0:
|
|||
print('Done, ' + str(len(PASS)) + '/' + str(len(tests)) + ' tests passed')
|
||||
else:
|
||||
print('Done, ' + str(len(FAIL)) + '/' + str(len(tests)) + ' tests failed: ' + string.join(FAIL, ', '))
|
||||
|
||||
sys.exit(0 if len(FAIL) == 0 else 1)
|
||||
|
|
Loading…
Reference in New Issue