Skip to content

Commit 753cb42

Browse files
authored
Merge pull request #129 from mweinelt/pytest9-compat
Fix pytest 9 compatibility
2 parents 2204f05 + 5165992 commit 753cb42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/linux/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
# ignore all tests in this folder if not on linux
11-
def pytest_ignore_collect(path, config):
11+
def pytest_ignore_collect(collection_path, config):
1212
if not sys.platform.startswith("linux"):
1313
return True
1414

tests/windows/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
# ignore all tests in this folder if not on windows
7-
def pytest_ignore_collect(path, config):
7+
def pytest_ignore_collect(collection_path, config):
88
if sys.platform not in ("win32", "cygwin"):
99
return True
1010

0 commit comments

Comments
 (0)