@@ -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 ):
@@ -4270,11 +4270,7 @@ def throws_runtime_err(self) -> None:
4270
4270
raise RuntimeError ("intentional failure" )
4271
4271
4272
4272
4273
- async def test_workflow_update_handlers_happy (client : Client , env : WorkflowEnvironment ):
4274
- if env .supports_time_skipping :
4275
- pytest .skip (
4276
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4277
- )
4273
+ async def test_workflow_update_handlers_happy (client : Client ):
4278
4274
async with new_worker (
4279
4275
client , UpdateHandlersWorkflow , activities = [say_hello ]
4280
4276
) as worker :
@@ -4316,13 +4312,7 @@ async def test_workflow_update_handlers_happy(client: Client, env: WorkflowEnvir
4316
4312
)
4317
4313
4318
4314
4319
- async def test_workflow_update_handlers_unhappy (
4320
- client : Client , env : WorkflowEnvironment
4321
- ):
4322
- if env .supports_time_skipping :
4323
- pytest .skip (
4324
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4325
- )
4315
+ async def test_workflow_update_handlers_unhappy (client : Client ):
4326
4316
async with new_worker (client , UpdateHandlersWorkflow ) as worker :
4327
4317
handle = await client .start_workflow (
4328
4318
UpdateHandlersWorkflow .run ,
@@ -4395,11 +4385,7 @@ async def test_workflow_update_handlers_unhappy(
4395
4385
assert "Rejected" == err .value .cause .message
4396
4386
4397
4387
4398
- async def test_workflow_update_task_fails (client : Client , env : WorkflowEnvironment ):
4399
- if env .supports_time_skipping :
4400
- pytest .skip (
4401
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4402
- )
4388
+ async def test_workflow_update_task_fails (client : Client ):
4403
4389
# Need to not sandbox so behavior can change based on globals
4404
4390
async with new_worker (
4405
4391
client , UpdateHandlersWorkflow , workflow_runner = UnsandboxedWorkflowRunner ()
@@ -4495,13 +4481,7 @@ def got_update(self) -> str:
4495
4481
return self ._got_update
4496
4482
4497
4483
4498
- async def test_workflow_update_before_worker_start (
4499
- client : Client , env : WorkflowEnvironment
4500
- ):
4501
- if env .supports_time_skipping :
4502
- pytest .skip (
4503
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4504
- )
4484
+ async def test_workflow_update_before_worker_start (client : Client ):
4505
4485
# In order to confirm that all started workflows get updates before the
4506
4486
# workflow completes, this test will start a workflow and start an update.
4507
4487
# Only then will it start the worker to process both in the task. The
@@ -4569,13 +4549,7 @@ async def signal(self) -> None:
4569
4549
self ._complete_update = True
4570
4550
4571
4551
4572
- async def test_workflow_update_separate_handle (
4573
- client : Client , env : WorkflowEnvironment
4574
- ):
4575
- if env .supports_time_skipping :
4576
- pytest .skip (
4577
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4578
- )
4552
+ async def test_workflow_update_separate_handle (client : Client ):
4579
4553
async with new_worker (client , UpdateSeparateHandleWorkflow ) as worker :
4580
4554
# Start the workflow
4581
4555
handle = await client .start_workflow (
@@ -4617,14 +4591,7 @@ async def do_update(self, sleep: float) -> None:
4617
4591
await asyncio .sleep (sleep )
4618
4592
4619
4593
4620
- async def test_workflow_update_timeout_or_cancel (
4621
- client : Client , env : WorkflowEnvironment
4622
- ):
4623
- if env .supports_time_skipping :
4624
- pytest .skip (
4625
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4626
- )
4627
-
4594
+ async def test_workflow_update_timeout_or_cancel (client : Client ):
4628
4595
# Confirm start timeout via short timeout on update w/ no worker running
4629
4596
handle = await client .start_workflow (
4630
4597
UpdateTimeoutOrCancelWorkflow .run ,
@@ -4914,14 +4881,7 @@ async def run(self, scenario: FailureTypesScenario) -> None:
4914
4881
await super ().run (scenario )
4915
4882
4916
4883
4917
- async def test_workflow_failure_types_configured (
4918
- client : Client , env : WorkflowEnvironment
4919
- ):
4920
- if env .supports_time_skipping :
4921
- pytest .skip (
4922
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
4923
- )
4924
-
4884
+ async def test_workflow_failure_types_configured (client : Client ):
4925
4885
# Asserter for a single scenario
4926
4886
async def assert_scenario (
4927
4887
workflow : Type [FailureTypesWorkflowBase ],
@@ -5305,11 +5265,7 @@ async def get_update_id(self) -> str:
5305
5265
return info .id
5306
5266
5307
5267
5308
- async def test_workflow_current_update (client : Client , env : WorkflowEnvironment ):
5309
- if env .supports_time_skipping :
5310
- pytest .skip (
5311
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5312
- )
5268
+ async def test_workflow_current_update (client : Client ):
5313
5269
async with new_worker (client , CurrentUpdateWorkflow ) as worker :
5314
5270
handle = await client .start_workflow (
5315
5271
CurrentUpdateWorkflow .run ,
@@ -5386,12 +5342,7 @@ async def my_signal_WARN_AND_ABANDON(self):
5386
5342
await self ._do_update_or_signal ()
5387
5343
5388
5344
5389
- async def test_unfinished_update_handler (client : Client , env : WorkflowEnvironment ):
5390
- skip_unfinished_handler_tests_in_older_python ()
5391
- if env .supports_time_skipping :
5392
- pytest .skip (
5393
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5394
- )
5345
+ async def test_unfinished_update_handler (client : Client ):
5395
5346
async with new_worker (client , UnfinishedHandlersWarningsWorkflow ) as worker :
5396
5347
test = _UnfinishedHandlersWarningsTest (client , worker , "update" )
5397
5348
await test .test_wait_all_handlers_finished_and_unfinished_handlers_warning ()
@@ -5628,7 +5579,6 @@ async def my_dynamic_signal(self, name: str, args: Sequence[RawValue]) -> None:
5628
5579
)
5629
5580
async def test_unfinished_handler_on_workflow_termination (
5630
5581
client : Client ,
5631
- env : WorkflowEnvironment ,
5632
5582
handler_type : Literal ["-signal-" , "-update-" ],
5633
5583
handler_registration : Literal ["-late-registered-" , "-not-late-registered-" ],
5634
5584
handler_dynamism : Literal ["-dynamic-" , "-not-dynamic-" ],
@@ -5639,11 +5589,6 @@ async def test_unfinished_handler_on_workflow_termination(
5639
5589
"-cancellation-" , "-failure-" , "-continue-as-new-"
5640
5590
],
5641
5591
):
5642
- skip_unfinished_handler_tests_in_older_python ()
5643
- if handler_type == "-update-" and env .supports_time_skipping :
5644
- pytest .skip (
5645
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5646
- )
5647
5592
await _UnfinishedHandlersOnWorkflowTerminationTest (
5648
5593
client ,
5649
5594
handler_type ,
@@ -5857,12 +5802,7 @@ async def my_update(self) -> str:
5857
5802
5858
5803
async def test_update_completion_is_honored_when_after_workflow_return_1 (
5859
5804
client : Client ,
5860
- env : WorkflowEnvironment ,
5861
5805
):
5862
- if env .supports_time_skipping :
5863
- pytest .skip (
5864
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5865
- )
5866
5806
update_id = "my-update"
5867
5807
task_queue = "tq"
5868
5808
wf_handle = await client .start_workflow (
@@ -5915,10 +5855,6 @@ async def test_update_completion_is_honored_when_after_workflow_return_2(
5915
5855
client : Client ,
5916
5856
env : WorkflowEnvironment ,
5917
5857
):
5918
- if env .supports_time_skipping :
5919
- pytest .skip (
5920
- "Java test server: https://github.com/temporalio/sdk-java/issues/1903"
5921
- )
5922
5858
async with Worker (
5923
5859
client ,
5924
5860
task_queue = "tq" ,
0 commit comments