diff --git a/tests/test_temporal.py b/tests/test_temporal.py index d75e625e11..e6f655be14 100644 --- a/tests/test_temporal.py +++ b/tests/test_temporal.py @@ -158,7 +158,11 @@ def workflow_raises(exc_type: type[Exception], exc_message: str) -> Iterator[Non @pytest.fixture(scope='module') async def temporal_env() -> AsyncIterator[WorkflowEnvironment]: - async with await WorkflowEnvironment.start_local(port=TEMPORAL_PORT, ui=True) as env: # pyright: ignore[reportUnknownMemberType] + async with await WorkflowEnvironment.start_local( # pyright: ignore[reportUnknownMemberType] + port=TEMPORAL_PORT, + ui=True, + dev_server_extra_args=['--dynamic-config-value', 'frontend.enableServerVersionCheck=false'], + ) as env: yield env