You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two ExceptionInfo classes and one of them seems to be eating exception stacktraces. any ideas?
one lives here venv/src/py/py/_code/code.py (I've added a print to its init and called it "ExceptionInfo #1"
and the other lives here /venv/lib/python3.5/site-packages/py/_code/code.py (ExceptionInfo #2)
Minimal example
Given this test file
test_repro.py
The ExceptionInfo used for test_repro() doesn't have an exception tuple associated, which is why i assume it can't print the stacktrace. Any ideas what's up?
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
There are two ExceptionInfo classes and one of them seems to be eating exception stacktraces. any ideas?
one lives here
venv/src/py/py/_code/code.py
(I've added a print to its init and called it "ExceptionInfo #1"and the other lives here
/venv/lib/python3.5/site-packages/py/_code/code.py
(ExceptionInfo #2)Minimal example
Given this test file
test_repro.py
I get this result from
pytest test/test_repro.py
pytest version 3.0.7; mac os x
The ExceptionInfo used for
test_repro()
doesn't have an exception tuple associated, which is why i assume it can't print the stacktrace. Any ideas what's up?The text was updated successfully, but these errors were encountered: