Skip to content

Commit c3448cc

Browse files
authored
Skip flaky test on versions with importer bug (#1195)
1 parent ba3d50f commit c3448cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/worker/test_workflow.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7564,6 +7564,8 @@ async def run(self, use_benign: bool) -> None:
75647564

75657565

75667566
async def test_activity_benign_error_not_logged(client: Client):
7567+
if sys.version_info < (3, 12):
7568+
pytest.skip("This test currently fails frequently on 3.10 due to import bug")
75677569
with LogCapturer().logs_captured(activity.logger.base_logger) as capturer:
75687570
async with new_worker(
75697571
client, RaiseErrorWorkflow, activities=[raise_application_error]

0 commit comments

Comments
 (0)