[7.3.x] cacheprovider: fix file-skipping feature for files in packages

This commit is contained in:
Ran Benita
2023-05-30 20:04:06 +03:00
committed by pytest bot
parent 682fc81781
commit 30a112583e
3 changed files with 9 additions and 2 deletions

View File

@@ -420,7 +420,13 @@ class TestLastFailed:
result = pytester.runpytest()
result.stdout.fnmatch_lines(["*1 failed in*"])
def test_terminal_report_lastfailed(self, pytester: Pytester) -> None:
@pytest.mark.parametrize("parent", ("session", "package"))
def test_terminal_report_lastfailed(self, pytester: Pytester, parent: str) -> None:
if parent == "package":
pytester.makepyfile(
__init__="",
)
test_a = pytester.makepyfile(
test_a="""
def test_a1(): pass