Merge pull request #1264 from nicoddemus/exception-interact-deprecated

Remove experimental status from pytest_exception_interact
This commit is contained in:
Ronny Pfannschmidt 2015-12-16 18:32:58 +01:00
commit 7b20288c2b
1 changed files with 2 additions and 3 deletions

View File

@ -282,12 +282,11 @@ def pytest_keyboard_interrupt(excinfo):
""" called for keyboard interrupt. """ """ called for keyboard interrupt. """
def pytest_exception_interact(node, call, report): def pytest_exception_interact(node, call, report):
""" (experimental, new in 2.4) called when """called when an exception was raised which can potentially be
an exception was raised which can potentially be
interactively handled. interactively handled.
This hook is only called if an exception was raised This hook is only called if an exception was raised
that is not an internal exception like "skip.Exception". that is not an internal exception like ``skip.Exception``.
""" """
def pytest_enter_pdb(): def pytest_enter_pdb():