File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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-
159146def test_to_mermaid_image_invalid_scale ():
160147 # Test invalid scale
161148 pipe = Pipeline ()
You can’t perform that action at this time.
0 commit comments