Merge pull request #1264 from nicoddemus/exception-interact-deprecated
Remove experimental status from pytest_exception_interact
This commit is contained in:
commit
7b20288c2b
|
@ -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():
|
||||||
|
|
Loading…
Reference in New Issue