Skip to content

Commit

Permalink
chore: skip python 3.13 flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
vdusek committed Dec 9, 2024
1 parent 98c982f commit 9d1d7d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/actor/test_actor_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import asyncio
import contextlib
import json
import sys
from typing import Any, Callable, cast

import pytest
Expand Down Expand Up @@ -115,6 +116,7 @@ async def test_actor_reboot_fails_locally() -> None:
await Actor.reboot()


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

0 comments on commit 9d1d7d2

Please sign in to comment.