Remove experimental status from pytest_exception_interact
This commit is contained in:
parent
7eea6b3b02
commit
2b2bec6b97
|
@ -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