We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d18ba commit ee842bfCopy full SHA for ee842bf
tests/unit/test_config.py
@@ -1175,13 +1175,16 @@ def WorkflowConfig__assert_err_raised():
1175
WorkflowConfig__assert_err_raised()
1176
1177
1178
-def test_undefined_custom_output(tmp_flow_config: Callable):
+@pytest.mark.parametrize(
1179
+ 'graph', (('foo:x => bar'), ('foo:x'))
1180
+)
1181
+def test_undefined_custom_output(graph: str, tmp_flow_config: Callable):
1182
"""Test error on undefined custom output referenced in graph."""
1183
id_ = 'custom_out1'
- flow_file = tmp_flow_config(id_, """
1184
+ flow_file = tmp_flow_config(id_, f"""
1185
[scheduling]
1186
[[graph]]
- R1 = "foo:x => bar"
1187
+ R1 = "{graph}"
1188
[runtime]
1189
[[foo, bar]]
1190
""")
0 commit comments