Skip to content

Commit 100ea42

Browse files
committed
Disable macos test on ipython 8.24.0
1 parent 1078cab commit 100ea42

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/matplotlib/testing/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,10 @@ def ipython_in_subprocess(
186186
):
187187
import pytest
188188
IPython = pytest.importorskip("IPython")
189+
if (IPython.version_info[:3] == (8, 24, 0) and
190+
requested_backend_or_gui_framework == "osx"):
191+
pytest.skip("Bug using macosx backend in IPython 8.24.0 fixed in 8.24.1")
192+
189193
if IPython.version_info[:2] >= (8, 24):
190194
expected_backend = expected_backend_new_ipython
191195
else:

0 commit comments

Comments
 (0)