[Pytest-commit] Issue #588: pytest_exception_interact runs AFTER finally clauses, should be before (hpk42/pytest)
Jeff Weiss
issues-reply at bitbucket.org
Thu Sep 11 16:23:18 CEST 2014
New issue 588: pytest_exception_interact runs AFTER finally clauses, should be before
https://bitbucket.org/hpk42/pytest/issue/588/pytest_exception_interact-runs-after
Jeff Weiss:
def test_mytest():
try:
errorprone()
finally:
cleanup()
If I define a pytest_exception_interact, it runs AFTER the cleanup(), should be before.
More information about the pytest-commit
mailing list