File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2323from temporalio .exceptions import ApplicationError , ApplicationErrorCategory
2424from temporalio .testing import WorkflowEnvironment
2525from temporalio .worker import UnsandboxedWorkflowRunner , Worker
26+ from tests .helpers import LogCapturer
2627from tests .helpers .cache_evitction import (
2728 CacheEvictionTearDownWorkflow ,
2829 WaitForeverWorkflow ,
2930 wait_forever_activity ,
3031)
31- from tests .helpers import LogCapturer
3232
3333# Passing through because Python 3.9 has an import bug at
3434# https://github.com/python/cpython/issues/91351
Original file line number Diff line number Diff line change 11import asyncio
22from datetime import timedelta
3+
34from temporalio import activity , workflow
45
56
Original file line number Diff line number Diff line change 130130)
131131from tests import DEV_SERVER_DOWNLOAD_VERSION
132132from tests .helpers import (
133+ LogCapturer ,
133134 admitted_update_task ,
134135 assert_eq_eventually ,
135136 assert_eventually ,
143144 pause_and_assert ,
144145 unpause_and_assert ,
145146 workflow_update_exists ,
146- LogCapturer ,
147- )
148- from tests .helpers .external_stack_trace import (
149- ExternalStackTraceWorkflow ,
150- external_wait_cancel ,
151147)
152148from tests .helpers .cache_evitction import (
153149 CacheEvictionTearDownWorkflow ,
154150 WaitForeverWorkflow ,
155151 wait_forever_activity ,
156152)
153+ from tests .helpers .external_stack_trace import (
154+ ExternalStackTraceWorkflow ,
155+ external_wait_cancel ,
156+ )
157157
158158# Passing through because Python 3.9 has an import bug at
159159# https://github.com/python/cpython/issues/91351
You can’t perform that action at this time.
0 commit comments