Skip to content

Commit 9d1d7d2

Browse files
committed
chore: skip python 3.13 flaky test
1 parent 98c982f commit 9d1d7d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit/actor/test_actor_lifecycle.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import asyncio
44
import contextlib
55
import json
6+
import sys
67
from typing import Any, Callable, cast
78

89
import pytest
@@ -115,6 +116,7 @@ async def test_actor_reboot_fails_locally() -> None:
115116
await Actor.reboot()
116117

117118

119+
@pytest.mark.skipif(sys.version_info >= (3, 13), reason='Suffers flaky behavior on Python 3.13')
118120
async def test_actor_handles_migrating_event_correctly(monkeypatch: pytest.MonkeyPatch) -> None:
119121
# This should test whether when you get a MIGRATING event,
120122
# the Actor automatically emits the PERSIST_STATE event with data `{'isMigrating': True}`

0 commit comments

Comments
 (0)