Skip to content
Snippets Groups Projects
Commit 068beb1f authored by Wout De Nolf's avatar Wout De Nolf
Browse files

harmonize execute_graph output

parent 084b9895
No related branches found
No related tags found
1 merge request!59Resolve "Harmonize execute_graph outputs"
Pipeline #74715 passed
from ewoksppf import execute_graph
from ewokscore.tests.utils.results import assert_execute_graph_all_tasks
from ewokscore.tests.utils.results import assert_execute_graph_default_result
def workflow9():
......@@ -58,5 +58,5 @@ def workflow9():
def test_workflow9(ppf_log_config, tmpdir):
varinfo = {"root_uri": str(tmpdir)}
graph, expected = workflow9()
execute_graph(graph, varinfo=varinfo)
assert_execute_graph_all_tasks(graph, expected, varinfo=varinfo)
result = execute_graph(graph, varinfo=varinfo)
assert_execute_graph_default_result(graph, result, expected, varinfo=varinfo)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment