Skip to content

Commit 10402d5

Browse files
authored
tests(temporal): drop request to check the temporal version (#3424)
1 parent 6fe5146 commit 10402d5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_temporal.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,11 @@ def workflow_raises(exc_type: type[Exception], exc_message: str) -> Iterator[Non
158158

159159
@pytest.fixture(scope='module')
160160
async def temporal_env() -> AsyncIterator[WorkflowEnvironment]:
161-
async with await WorkflowEnvironment.start_local(port=TEMPORAL_PORT, ui=True) as env: # pyright: ignore[reportUnknownMemberType]
161+
async with await WorkflowEnvironment.start_local( # pyright: ignore[reportUnknownMemberType]
162+
port=TEMPORAL_PORT,
163+
ui=True,
164+
dev_server_extra_args=['--dynamic-config-value', 'frontend.enableServerVersionCheck=false'],
165+
) as env:
162166
yield env
163167

164168

0 commit comments

Comments
 (0)