We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 426826b commit 7948155Copy full SHA for 7948155
mss/tests/test_issue_220.py
@@ -10,8 +10,8 @@
10
11
tkinter = pytest.importorskip("tkinter")
12
13
-if platform.python_implementation() == "PyPy":
14
- # PyPy 7.3.11 [Python 3.9.16] fails on GitHub:
+if platform.system().lower() == "darwin" and platform.python_implementation() == "PyPy":
+ # [macOS] PyPy 7.3.11 [Python 3.9.16] fails on GitHub:
15
# RuntimeError: tk.h version (8.5) doesn't match libtk.a version (8.6)
16
pytestmark = pytest.mark.skip
17
0 commit comments