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 0a21bf7 commit 818c417Copy full SHA for 818c417
tests/test_activity.py
@@ -24,10 +24,8 @@ async def test_describe_activity(client: Client):
24
)
25
desc = await activity_handle.describe()
26
assert desc.activity_id == activity_id
27
- assert desc.run_id == activity_handle.run_id
+ # TODO: server not returning run ID yet
28
+ # assert desc.run_id == activity_handle.run_id
29
assert desc.activity_type == "increment"
30
assert desc.task_queue == task_queue
- assert desc.status in [
31
- ActivityExecutionStatus.RUNNING,
32
- ActivityExecutionStatus.COMPLETED,
33
- ]
+ assert desc.status == ActivityExecutionStatus.RUNNING
0 commit comments