diff options
Diffstat (limited to 'test')
-rwxr-xr-x | test/run_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_test.py b/test/run_test.py index 26fcfb869d..16754f8638 100755 --- a/test/run_test.py +++ b/test/run_test.py @@ -227,7 +227,7 @@ def main(): print('Running {} ...'.format(test_module)) handler = CUSTOM_HANDLERS.get(test, run_test) if not handler(python, test_module, test_directory, options.verbose): - break + raise RuntimeError('{} failed!'.format(test_module)) if options.coverage: shell('coverage combine') |