Skip to content

Commit 820e2e7

Browse files
committed
Fix #170
1 parent 8d94644 commit 820e2e7

6 files changed

+42
-6
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ All notable changes to this project be documented in this file.
1919
- nothing so far
2020
2121
-->
22+
## [2.5.2] - 2025-Mar-29
23+
24+
### Fixed
25+
26+
- Fixes a weird corner case where an internal error could be generated by (1) having a session scope fixture fail in teardown and (2) having the last test in the session be skipped. Thanks @asyash26 for reporting and creating reproduction steps. Resolves #170
27+
2228
## [2.5.1] - 2025-Mar-18
2329

2430
### Fixed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""
2+
Ensure that failing in teardown works.
3+
4+
There's something about this order that can trip up the plugin.
5+
6+
1. A session scope fixture fails in teardown with pytest_check.fail()
7+
2. The last test of the session is skipped.
8+
9+
This is what's happening in issue #170
10+
Causing a fix in pytest-check 2.5.2
11+
"""
12+
13+
import pytest
14+
from pytest_check import check
15+
16+
@pytest.fixture(scope="session")
17+
def fail_in_teardown():
18+
yield
19+
check.fail("Failed in teardown")
20+
21+
def test_fail_in_teardown(fail_in_teardown):
22+
assert 1 == 1
23+
24+
@pytest.mark.skip
25+
def test_skip():
26+
assert 1 == 1

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = [{name = "Brian Okken"}]
44
readme = "README.md"
55
license = {file = "LICENSE.txt"}
66
description="A pytest plugin that allows multiple failures per test."
7-
version = "2.5.1"
7+
version = "2.5.2"
88
requires-python = ">=3.9"
99
classifiers = [
1010
"License :: OSI Approved :: MIT License",

src/pytest_check/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import pytest
2-
from . import check_functions
32

4-
# make sure assert rewriting happens
5-
pytest.register_assert_rewrite("pytest_check.check_functions")
3+
# We need register rewrites before import
4+
pytest.register_assert_rewrite("pytest_check.check_functions")
5+
6+
from . import check_functions # noqa: E402
67

78
# allow for top level helper function access:
89
# import pytest_check

src/pytest_check/plugin.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,11 @@ def pytest_runtest_makereport(
3030
check_log.clear_failures()
3131

3232
if failures:
33-
xfailed_value = item._store[xfailed_key]
33+
xfailed_value = item._store.get(xfailed_key, None)
3434
if xfailed_value and not item.config.option.runxfail:
3535
report.outcome = "skipped"
3636
report.wasxfail = xfailed_value.reason
3737
else:
38-
3938
summary = f"Failed Checks: {num_failures}"
4039
longrepr = ["\n".join(failures)]
4140
longrepr.append("-" * 60)
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
def test_skip_teardown_fail(pytester):
2+
pytester.copy_example("examples/test_example_fail_in_teardown_with_skip.py")
3+
result = pytester.runpytest()
4+
result.assert_outcomes(passed=1, skipped=1, errors=1)

0 commit comments

Comments
 (0)