Skip to content

Commit

Permalink
Skip test due to putative Java test server bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Jun 26, 2024
1 parent 97fc45f commit b9e07cd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/worker/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5420,7 +5420,13 @@ async def test_unfinished_update_handler_with_workflow_failure(
).test_warning_is_issued_when_cancellation_or_failure_causes_exit_with_unfinished_handler()


async def test_unfinished_signal_handler_with_workflow_failure(client: Client):
async def test_unfinished_signal_handler_with_workflow_failure(
client: Client, env: WorkflowEnvironment
):
if env.supports_time_skipping:
pytest.skip(
"Java test server: https://github.com/temporalio/sdk-java/issues/2127"
)
await _UnfinishedHandlersWithCancellationOrFailureTest(
client,
"signal",
Expand Down

0 comments on commit b9e07cd

Please sign in to comment.