Skip to content

Commit d3bf64e

Browse files
committed
Unbreak CI by xfailing
1 parent 382be60 commit d3bf64e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/matplotlib/tests/test_backends_interactive.py

+5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ def _get_testable_interactive_backends():
4040
backend,
4141
marks=pytest.mark.skip(
4242
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'))
4348
backends.append(backend)
4449
return backends
4550

0 commit comments

Comments
 (0)