Merge pull request #504 from katlapinka/no-skip

Execute teardown after skip in test
This commit is contained in:
Robert Baldyga 2020-08-19 17:44:45 +02:00 committed by GitHub
commit bdd201d1e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 4 deletions

@ -1 +1 @@
Subproject commit 548dcc58d4f29d37a2a2f97149928853e4d628a7 Subproject commit 6f60cfc05187d8cde5e3b3e613b13dfc2b0b3b77

View File

@ -82,9 +82,6 @@ def pytest_runtest_teardown():
This method is executed always in the end of each test, even if it fails or raises exception in This method is executed always in the end of each test, even if it fails or raises exception in
prepare stage. prepare stage.
""" """
if TestRun.outcome == "skipped":
return
TestRun.LOGGER.end_all_groups() TestRun.LOGGER.end_all_groups()
with TestRun.LOGGER.step("Cleanup after test"): with TestRun.LOGGER.step("Cleanup after test"):