aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting')
-rw-r--r--xtesting/ci/run_tests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py
index 0471732f..c8983b46 100644
--- a/xtesting/ci/run_tests.py
+++ b/xtesting/ci/run_tests.py
@@ -177,6 +177,12 @@ class Runner(object):
LOGGER.exception("Cannot import module %s", run_dict['module'])
except AttributeError:
LOGGER.exception("Cannot get class %s", run_dict['class'])
+ except Exception: # pylint: disable=broad-except
+ LOGGER.exception(
+ "\n\nPlease fix the testcase %s.\n"
+ "All exceptions should be caught by the testcase instead!"
+ "\n\n",
+ test.get_name())
else:
raise Exception("Cannot import the class for the test case.")
return result