Skip to content

Commit a7ee0b9

Browse files
committed
Merge branch 'testing_tools_fix' into devel
* testing_tools_fix: Fixed but in testing tools delpoyment on python error
2 parents 0830562 + e3cd0cf commit a7ee0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rapp_testing_tools/src/rapp_testing_tools/rapp_testing_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def execute_tests_all(tests, numCalls, threaded):
233233
report_test_line = l
234234
break
235235
print '\n\t' + report_test_line
236-
if 'FAILED' in output:
236+
if 'FAILED' in output or 'Traceback' in output:
237237
failed.append(test)
238238
sys.stdout.write(\
239239
'\t' + bcolors.BOLD + bcolors.FAIL + \

0 commit comments

Comments
 (0)