We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 258ad31 + 486ce40 commit c5d604bCopy full SHA for c5d604b
lib/matplotlib/tests/test_backends_interactive.py
@@ -29,6 +29,8 @@ def _get_testable_interactive_backends():
29
reason = "No $DISPLAY"
30
elif any(importlib.util.find_spec(dep) is None for dep in deps):
31
reason = "Missing dependency"
32
+ elif "wx" in deps and sys.platform == "darwin":
33
+ reason = "wx backends known not to work on OSX"
34
backends.append(pytest.mark.skip(reason=reason)(backend) if reason
35
else backend)
36
return backends
0 commit comments