pytest-pycharm icon indicating copy to clipboard operation
pytest-pycharm copied to clipboard

Plugin for py.test to enter PyCharm debugger on uncaught exceptions

Results 4 pytest-pycharm issues
Sort by recently updated
recently updated
newest added

having this code: ``` @pytest.mark.hookwrapper def pytest_runtest_makereport(item, call): outcome = yield report = outcome.get_result() print(report.when) def test_foo(): assert 0 ``` The `pytest_runtest_makereport` method will be called 3 times (setup, call...

if the stack stops in a problem in a given test, then all breakpoints in other subsequent tests are ignored: ```python def test_failing(): assert False def test_success(): assert True #

I currently receive the following error when trying to pip install the package: ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the...

Hello, thanks so much for your work! Would it be possible to have the pydev debugger be called when we use `pytest.set_trace()` as well?