We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 382be60 commit d3bf64eCopy full SHA for d3bf64e
lib/matplotlib/tests/test_backends_interactive.py
@@ -40,6 +40,11 @@ def _get_testable_interactive_backends():
40
backend,
41
marks=pytest.mark.skip(
42
reason=f"Skipping {backend} because {reason}"))
43
+ elif backend == 'wxagg' and sys.platform == 'darwin':
44
+ # ignore on OSX because that's currently broken #16849
45
+ backends = pytest.param(
46
+ backend,
47
+ marks=pytest.mark.xfail(reason='github #16849'))
48
backends.append(backend)
49
return backends
50
0 commit comments