We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c982f commit d2fb927Copy full SHA for d2fb927
tests/unit/actor/test_actor_lifecycle.py
@@ -3,6 +3,7 @@
3
import asyncio
4
import contextlib
5
import json
6
+import sys
7
from typing import Any, Callable, cast
8
9
import pytest
@@ -115,6 +116,7 @@ async def test_actor_reboot_fails_locally() -> None:
115
116
await Actor.reboot()
117
118
119
+@pytest.mark.skipif(sys.version_info >= (3, 13), reason='Suffers flaky behavior on Python 3.13')
120
async def test_actor_handles_migrating_event_correctly(monkeypatch: pytest.MonkeyPatch) -> None:
121
# This should test whether when you get a MIGRATING event,
122
# the Actor automatically emits the PERSIST_STATE event with data `{'isMigrating': True}`
0 commit comments