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 634d8f0 commit d50342fCopy full SHA for d50342f
test/conftest.py
@@ -15,7 +15,7 @@
15
@pytest.fixture(scope="session", autouse=True)
16
def patch_macos_ci_matplotlib():
17
# use noninteractive matplotlib backend if in Mac OS CI to avoid pytest-xdist node failure
18
- if is_in_ci() and system().lower() == "darwin":
+ if is_in_ci() and system().lower() in ["darwin", "windows"]:
19
import matplotlib
20
21
matplotlib.use("agg")
0 commit comments