diff --git a/tests/functional_tests/workflow_cancellation_test.py b/tests/functional_tests/workflow_cancellation_test.py index a7c8ae6f8..9d1eaee4d 100644 --- a/tests/functional_tests/workflow_cancellation_test.py +++ b/tests/functional_tests/workflow_cancellation_test.py @@ -52,6 +52,10 @@ def workflow(x): ct.cancel(dispatch_id) result = ct.get_result(dispatch_id, wait=True) + print(result.error) + for node_id in result.lattice.transport_graph._graph.nodes: + print(result.get_node_result(node_id)) + assert result.status == ct.status.CANCELLED rm._delete_result(dispatch_id)