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.
1 parent 258ad31 commit 486ce40Copy full SHA for 486ce40
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