Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/linux/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


# ignore all tests in this folder if not on linux
def pytest_ignore_collect(path, config):
def pytest_ignore_collect(collection_path, config):
if not sys.platform.startswith("linux"):
return True

Expand Down
2 changes: 1 addition & 1 deletion tests/windows/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


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

Expand Down
Loading