Skip to content

Commit 043ae67

Browse files
committed
fix.
1 parent 68b5c47 commit 043ae67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_dag_command.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
else:
1717
_IS_PYGRAPHVIZ_INSTALLED = True
1818

19-
# Test should run always on remote except on Windows and locally only with the package
20-
# installed.
19+
# Test should run always on remote except on Windows and MacOS with M1 and locally only
20+
# with the package installed.
2121
_TEST_SHOULD_RUN = _IS_PYGRAPHVIZ_INSTALLED or (
22-
os.environ.get("CI") and sys.platform != "win32"
22+
os.environ.get("CI") and sys.platform not in ("win32", "darwin")
2323
)
2424
_GRAPH_LAYOUTS = ["neato", "dot", "fdp", "sfdp", "twopi", "circo"]
2525
_TEST_FORMATS = ["dot", "pdf", "png", "jpeg", "svg"]

0 commit comments

Comments
 (0)