We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba9a0d3 commit 6b1ee7eCopy full SHA for 6b1ee7e
1 file changed
tests/test_dag_command.py
@@ -62,6 +62,9 @@ def task_example(path=Path("input.txt")): ...
62
63
64
@pytest.mark.skipif(not _TEST_SHOULD_RUN, reason="pygraphviz is required")
65
+@pytest.mark.xfail(
66
+ sys.platform == "linux" and sys.version_info[:2] == (3, 9), reason="flakey"
67
+)
68
@pytest.mark.parametrize("layout", _GRAPH_LAYOUTS)
69
@pytest.mark.parametrize("format_", _TEST_FORMATS)
70
@pytest.mark.parametrize("rankdir", [_RankDirection.LR.value, _RankDirection.TB])
0 commit comments