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 fe7d7b7 commit edceb29Copy full SHA for edceb29
lib/matplotlib/testing/__init__.py
@@ -186,6 +186,10 @@ def ipython_in_subprocess(
186
):
187
import pytest
188
IPython = pytest.importorskip("IPython")
189
+
190
+ if sys.platform == "win32":
191
+ pytest.skip("Cannot change backend running IPython in subprocess on Windows")
192
193
if (IPython.version_info[:3] == (8, 24, 0) and
194
requested_backend_or_gui_framework == "osx"):
195
pytest.skip("Bug using macosx backend in IPython 8.24.0 fixed in 8.24.1")
0 commit comments