@@ -1494,7 +1494,7 @@ async def test_workflow_with_codec(client: Client, env: WorkflowEnvironment):
1494
1494
await test_workflow_signal_and_query (client )
1495
1495
await test_workflow_signal_and_query_errors (client )
1496
1496
await test_workflow_simple_activity (client )
1497
- await test_workflow_update_handlers_happy (client , env )
1497
+ await test_workflow_update_handlers_happy (client )
1498
1498
1499
1499
1500
1500
class PassThroughCodec (PayloadCodec ):
@@ -4268,11 +4268,7 @@ def throws_runtime_err(self) -> None:
4268
4268
raise RuntimeError ("intentional failure" )
4269
4269
4270
4270
4271
- async def test_workflow_update_handlers_happy (client : Client , env : WorkflowEnvironment ):
4272
- if env .supports_time_skipping :
4273
- pytest .skip (
4274
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4275
- )
4271
+ async def test_workflow_update_handlers_happy (client : Client ):
4276
4272
async with new_worker (
4277
4273
client , UpdateHandlersWorkflow , activities = [say_hello ]
4278
4274
) as worker :
@@ -4314,13 +4310,7 @@ async def test_workflow_update_handlers_happy(client: Client, env: WorkflowEnvir
4314
4310
)
4315
4311
4316
4312
4317
- async def test_workflow_update_handlers_unhappy (
4318
- client : Client , env : WorkflowEnvironment
4319
- ):
4320
- if env .supports_time_skipping :
4321
- pytest .skip (
4322
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4323
- )
4313
+ async def test_workflow_update_handlers_unhappy (client : Client ):
4324
4314
async with new_worker (client , UpdateHandlersWorkflow ) as worker :
4325
4315
handle = await client .start_workflow (
4326
4316
UpdateHandlersWorkflow .run ,
@@ -4393,11 +4383,7 @@ async def test_workflow_update_handlers_unhappy(
4393
4383
assert "Rejected" == err .value .cause .message
4394
4384
4395
4385
4396
- async def test_workflow_update_task_fails (client : Client , env : WorkflowEnvironment ):
4397
- if env .supports_time_skipping :
4398
- pytest .skip (
4399
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4400
- )
4386
+ async def test_workflow_update_task_fails (client : Client ):
4401
4387
# Need to not sandbox so behavior can change based on globals
4402
4388
async with new_worker (
4403
4389
client , UpdateHandlersWorkflow , workflow_runner = UnsandboxedWorkflowRunner ()
@@ -4442,13 +4428,7 @@ def got_update(self) -> str:
4442
4428
return self ._got_update
4443
4429
4444
4430
4445
- async def test_workflow_update_before_worker_start (
4446
- client : Client , env : WorkflowEnvironment
4447
- ):
4448
- if env .supports_time_skipping :
4449
- pytest .skip (
4450
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4451
- )
4431
+ async def test_workflow_update_before_worker_start (client : Client ):
4452
4432
# In order to confirm that all started workflows get updates before the
4453
4433
# workflow completes, this test will start a workflow and start an update.
4454
4434
# Only then will it start the worker to process both in the task. The
@@ -4516,13 +4496,7 @@ async def signal(self) -> None:
4516
4496
self ._complete_update = True
4517
4497
4518
4498
4519
- async def test_workflow_update_separate_handle (
4520
- client : Client , env : WorkflowEnvironment
4521
- ):
4522
- if env .supports_time_skipping :
4523
- pytest .skip (
4524
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4525
- )
4499
+ async def test_workflow_update_separate_handle (client : Client ):
4526
4500
async with new_worker (client , UpdateSeparateHandleWorkflow ) as worker :
4527
4501
# Start the workflow
4528
4502
handle = await client .start_workflow (
@@ -4562,14 +4536,7 @@ async def do_update(self, sleep: float) -> None:
4562
4536
await asyncio .sleep (sleep )
4563
4537
4564
4538
4565
- async def test_workflow_update_timeout_or_cancel (
4566
- client : Client , env : WorkflowEnvironment
4567
- ):
4568
- if env .supports_time_skipping :
4569
- pytest .skip (
4570
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4571
- )
4572
-
4539
+ async def test_workflow_update_timeout_or_cancel (client : Client ):
4573
4540
# Confirm start timeout via short timeout on update w/ no worker running
4574
4541
handle = await client .start_workflow (
4575
4542
UpdateTimeoutOrCancelWorkflow .run ,
@@ -4859,14 +4826,7 @@ async def run(self, scenario: FailureTypesScenario) -> None:
4859
4826
await super ().run (scenario )
4860
4827
4861
4828
4862
- async def test_workflow_failure_types_configured (
4863
- client : Client , env : WorkflowEnvironment
4864
- ):
4865
- if env .supports_time_skipping :
4866
- pytest .skip (
4867
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4868
- )
4869
-
4829
+ async def test_workflow_failure_types_configured (client : Client ):
4870
4830
# Asserter for a single scenario
4871
4831
async def assert_scenario (
4872
4832
workflow : Type [FailureTypesWorkflowBase ],
@@ -5250,11 +5210,7 @@ async def get_update_id(self) -> str:
5250
5210
return info .id
5251
5211
5252
5212
5253
- async def test_workflow_current_update (client : Client , env : WorkflowEnvironment ):
5254
- if env .supports_time_skipping :
5255
- pytest .skip (
5256
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5257
- )
5213
+ async def test_workflow_current_update (client : Client ):
5258
5214
async with new_worker (client , CurrentUpdateWorkflow ) as worker :
5259
5215
handle = await client .start_workflow (
5260
5216
CurrentUpdateWorkflow .run ,
@@ -5325,11 +5281,7 @@ async def my_signal_WARN_AND_ABANDON(self):
5325
5281
await self ._do_update_or_signal ()
5326
5282
5327
5283
5328
- async def test_unfinished_update_handler (client : Client , env : WorkflowEnvironment ):
5329
- if env .supports_time_skipping :
5330
- pytest .skip (
5331
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5332
- )
5284
+ async def test_unfinished_update_handler (client : Client ):
5333
5285
async with new_worker (client , UnfinishedHandlersWarningsWorkflow ) as worker :
5334
5286
test = _UnfinishedHandlersWarningsTest (client , worker , "update" )
5335
5287
await test .test_wait_all_handlers_finished_and_unfinished_handlers_warning ()
@@ -5566,7 +5518,6 @@ async def my_dynamic_signal(self, name: str, args: Sequence[RawValue]) -> None:
5566
5518
)
5567
5519
async def test_unfinished_handler_on_workflow_termination (
5568
5520
client : Client ,
5569
- env : WorkflowEnvironment ,
5570
5521
handler_type : Literal ["-signal-" , "-update-" ],
5571
5522
handler_registration : Literal ["-late-registered-" , "-not-late-registered-" ],
5572
5523
handler_dynamism : Literal ["-dynamic-" , "-not-dynamic-" ],
@@ -5577,10 +5528,6 @@ async def test_unfinished_handler_on_workflow_termination(
5577
5528
"-cancellation-" , "-failure-" , "-continue-as-new-"
5578
5529
],
5579
5530
):
5580
- if handler_type == "-update-" and env .supports_time_skipping :
5581
- pytest .skip (
5582
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5583
- )
5584
5531
await _UnfinishedHandlersOnWorkflowTerminationTest (
5585
5532
client ,
5586
5533
handler_type ,
@@ -5793,12 +5740,7 @@ async def my_update(self) -> str:
5793
5740
5794
5741
async def test_update_completion_is_honored_when_after_workflow_return_1 (
5795
5742
client : Client ,
5796
- env : WorkflowEnvironment ,
5797
5743
):
5798
- if env .supports_time_skipping :
5799
- pytest .skip (
5800
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5801
- )
5802
5744
update_id = "my-update"
5803
5745
task_queue = "tq"
5804
5746
wf_handle = await client .start_workflow (
@@ -5851,10 +5793,6 @@ async def test_update_completion_is_honored_when_after_workflow_return_2(
5851
5793
client : Client ,
5852
5794
env : WorkflowEnvironment ,
5853
5795
):
5854
- if env .supports_time_skipping :
5855
- pytest .skip (
5856
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5857
- )
5858
5796
async with Worker (
5859
5797
client ,
5860
5798
task_queue = "tq" ,
0 commit comments