Skip to content
Open
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
6 changes: 3 additions & 3 deletions tests/linux/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import pytest


if sys.platform.startswith("linux"):
if sys.platform.startswith(("darwin", "linux")):
import termios


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


Expand Down