diff options
author | mahesh | 2017-10-27 02:22:08 +0530 |
---|---|---|
committer | maheshgudi | 2017-11-07 14:50:09 +0530 |
commit | 72b3d672735f624064431cbb0751d3cc3b08b6ba (patch) | |
tree | cd1ea7fa1c14a82813c973ff62fb9c1e067b3291 /yaksh/python_assertion_evaluator.py | |
parent | 16e8d4b3c096e6034c0066adffc8f5a520f272c7 (diff) | |
download | online_test-72b3d672735f624064431cbb0751d3cc3b08b6ba.tar.gz online_test-72b3d672735f624064431cbb0751d3cc3b08b6ba.tar.bz2 online_test-72b3d672735f624064431cbb0751d3cc3b08b6ba.zip |
Add traceback for exceptions
Diffstat (limited to 'yaksh/python_assertion_evaluator.py')
-rw-r--r-- | yaksh/python_assertion_evaluator.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/yaksh/python_assertion_evaluator.py b/yaksh/python_assertion_evaluator.py index 35a08ec..af89fc3 100644 --- a/yaksh/python_assertion_evaluator.py +++ b/yaksh/python_assertion_evaluator.py @@ -75,23 +75,23 @@ class PythonAssertionEvaluator(BaseEvaluator): except TimeoutException: raise except AssertionError: - type, _, tb = sys.exc_info() - tb_info = traceback.extract_tb(tb) - filename, line, func, text = tb_info[-1] + exc_type, exc_value, exc_tb = sys.exc_info() value = "Expected answer from the test case didnt match the output" err = {"type": "assertion", "test_case": self.test_case, - "exception": type.__name__, - "message": value + "exception": exc_type.__name__, + "message": value, } except Exception: - type, value, tb = sys.exc_info() - tb_info = traceback.extract_tb(tb) - filename, line, func, text = tb_info[-1] + exc_type, exc_value, exc_tb = sys.exc_info() + tb_list = traceback.format_exception(exc_type, exc_value, exc_tb) + if len(tb_list) > 2: + del tb_list[1:3] + err = {"type": "assertion", - "test_case": self.test_case, - "exception": type.__name__, - "message": str(value) + "traceback": "".join(tb_list), + "exception": exc_type.__name__, + "message": str(exc_value) } else: |