Skip to content

Commit

Permalink
fix: skip update test when time-skipping is enabled
Browse files Browse the repository at this point in the history
Co-authored-by: Chad Retz <[email protected]>
  • Loading branch information
yashvanzara and cretz authored Jul 22, 2024
1 parent 8288b75 commit b0c35bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/hello/hello_update_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
from hello.hello_update import GreetingWorkflow


async def test_update_workflow(client: Client):
async def test_update_workflow(client: Client, env: WorkflowEnvironment):
if env.supports_time_skipping:
pytest.skip("Time-skipping test server currently has issue with update: https://github.com/temporalio/sdk-java/issues/1903")
task_queue_name = str(uuid.uuid4())
async with Worker(client, task_queue=task_queue_name, workflows=[GreetingWorkflow]):
handle = await client.start_workflow(
Expand Down

0 comments on commit b0c35bd

Please sign in to comment.