@@ -110,9 +110,9 @@ async def env(env_type: str) -> AsyncGenerator[WorkflowEnvironment, None]:
110110 "--dynamic-config-value" ,
111111 "frontend.enableExecuteMultiOperation=true" ,
112112 "--dynamic-config-value" ,
113- "frontend.enableVersioningWorkflowAPIs =true" ,
113+ "frontend.workerVersioningWorkflowAPIs =true" ,
114114 "--dynamic-config-value" ,
115- "frontend.enableVersioningDataAPIs =true" ,
115+ "frontend.workerVersioningDataAPIs =true" ,
116116 "--dynamic-config-value" ,
117117 "system.enableDeploymentVersions=true" ,
118118 ],
@@ -140,18 +140,16 @@ async def worker(
140140 await worker .close ()
141141
142142
143- # There is an issue on 3.9 tests in GitHub actions where even though all tests
143+ # There is an issue in tests sometimes in GitHub actions where even though all tests
144144# pass, an unclear outer area is killing the process with a bad exit code. This
145145# hook forcefully kills the process as success when the exit code from pytest
146146# is a success.
147- if sys .version_info < (3 , 10 ):
148-
149- @pytest .hookimpl (hookwrapper = True , trylast = True )
150- def pytest_cmdline_main (config ):
151- result = yield
152- if result .get_result () == 0 :
153- os ._exit (0 )
154- return result .get_result ()
147+ @pytest .hookimpl (hookwrapper = True , trylast = True )
148+ def pytest_cmdline_main (config ):
149+ result = yield
150+ if result .get_result () == 0 :
151+ os ._exit (0 )
152+ return result .get_result ()
155153
156154
157155CONTINUE_AS_NEW_SUGGEST_HISTORY_COUNT = 50
0 commit comments