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

1import threading 

2 

3_JB_PYTEST_LOCAL = threading.local() 

4 

5 

6def store_exception(exc): 

7 _JB_PYTEST_LOCAL.exception = exc 

8 

9 

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