Skip to content

Commit 70248b8

Browse files
committed
test: remove breaking pytest type hints
The "request" apparently isn't a FixtureRequest in all pytest versions we run with. Failed in our current Alpine docker image.
1 parent 49e0236 commit 70248b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/t/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ def in_container() -> bool:
637637

638638

639639
def prepare_fixture_dir(
640-
request: pytest.FixtureRequest, files: Iterable[str], dirs: Iterable[str]
640+
request, files: Iterable[str], dirs: Iterable[str]
641641
) -> Tuple[Path, List[str], List[str]]:
642642
"""
643643
Fixture to prepare a test dir with dummy contents on the fly.

0 commit comments

Comments
 (0)