Skip to content

Commit d50342f

Browse files
authored
avoid tcl ci errors on windows (#224)
1 parent 634d8f0 commit d50342f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@pytest.fixture(scope="session", autouse=True)
1616
def patch_macos_ci_matplotlib():
1717
# use noninteractive matplotlib backend if in Mac OS CI to avoid pytest-xdist node failure
18-
if is_in_ci() and system().lower() == "darwin":
18+
if is_in_ci() and system().lower() in ["darwin", "windows"]:
1919
import matplotlib
2020

2121
matplotlib.use("agg")

0 commit comments

Comments
 (0)