Skip to content

Commit 93be7a3

Browse files
authored
skip type tests on all but linux (#481)
1 parent ea425b6 commit 93be7a3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/typesafety/__init__.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,5 @@
33

44
import pytest
55

6-
if (
7-
os.getenv("CI")
8-
and sys.version_info[:2] == (3, 10)
9-
and not sys.platform.startswith("linux")
10-
):
6+
if os.getenv("CI") and not sys.platform.startswith("linux"):
117
pytest.skip("Typing tests not working here at the moment.", allow_module_level=True)

0 commit comments

Comments
 (0)