Skip to content

Commit

Permalink
debugging test
Browse files Browse the repository at this point in the history
  • Loading branch information
cjao committed Jun 8, 2023
1 parent 297ee0d commit 4fc0fa0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/functional_tests/workflow_cancellation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 4fc0fa0

Please sign in to comment.