Skip to content

Commit f9cce8b

Browse files
authored
test: skip/remove some Pipeline.draw integration tests (#9108)
1 parent 42c9350 commit f9cce8b

1 file changed

Lines changed: 1 addition & 14 deletions

File tree

test/core/pipeline/test_draw.py

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def test_to_mermaid_text_does_not_edit_graph():
111111
assert expected_pipe == pipe.to_dict()
112112

113113

114+
@pytest.mark.skip(reason="This is a nice to have, but frequently fails due to mermaid.ink issues")
114115
@pytest.mark.integration
115116
@pytest.mark.parametrize(
116117
"params",
@@ -142,20 +143,6 @@ def test_to_mermaid_image_invalid_format():
142143
_to_mermaid_image(pipe.graph, params={"format": "invalid_format"})
143144

144145

145-
@pytest.mark.integration
146-
def test_to_mermaid_image_missing_theme():
147-
# Test default theme (neutral)
148-
pipe = Pipeline()
149-
pipe.add_component("comp1", Double())
150-
pipe.add_component("comp2", Double())
151-
pipe.connect("comp1", "comp2")
152-
153-
params = {"format": "img"}
154-
image_data = _to_mermaid_image(pipe.graph, params=params)
155-
156-
assert image_data # Ensure some data is returned
157-
158-
159146
def test_to_mermaid_image_invalid_scale():
160147
# Test invalid scale
161148
pipe = Pipeline()

0 commit comments

Comments
 (0)