Coverage for /Applications/PyCharm.app/Contents/plugins/python-ce/helpers/pycharm/teamcity/jb_local_exc_store.py: 73%
11 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-11 18:09 +0200
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-11 18:09 +0200
1import threading
3_JB_PYTEST_LOCAL = threading.local()
6def store_exception(exc):
7 _JB_PYTEST_LOCAL.exception = exc
10def get_exception():
11 try:
12 exception = _JB_PYTEST_LOCAL.exception
13 _JB_PYTEST_LOCAL.exception = None
14 return exception
15 except AttributeError:
16 return None