From 3f4f68f3817fd4805f2aaf729ddf921f41b408f4 Mon Sep 17 00:00:00 2001 From: Chad Retz Date: Mon, 12 May 2025 15:35:34 -0500 Subject: [PATCH] Properly skip infrequent polling test on time-skipping server Fixes #184 --- tests/polling/infrequent/workflow_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/polling/infrequent/workflow_test.py b/tests/polling/infrequent/workflow_test.py index 31f3f987..76bab203 100644 --- a/tests/polling/infrequent/workflow_test.py +++ b/tests/polling/infrequent/workflow_test.py @@ -10,7 +10,7 @@ async def test_infrequent_polling_workflow(client: Client, env: WorkflowEnvironment): - if not env.supports_time_skipping: + if env.supports_time_skipping: pytest.skip("Too slow to test with time-skipping disabled") # Start a worker that hosts the workflow and activity implementations.