Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions codewars_test/test_framework.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ def wrapper(func):
func()
except AssertionError as e:
display('FAILED', str(e))
except AssertException:
pass # assertions emit '<FAIL::>' before throwing the AssertException
except Exception:
fail('Unexpected exception raised')
tb_str = ''.join(format_exception(*exc_info()))
Expand Down