Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/tests/test_python_actors.py
Original file line number Diff line number Diff line change
Expand Up @@ -1713,6 +1713,8 @@ async def async_setup_with_spawn() -> None:
await bar.incr.call()


# oss_skip: passes internally but fails on CI with "ValueError: error spawning proc mesh: statuses: Timeout(30.000905376s)=0..1"
@pytest.mark.oss_skip
def test_setup() -> None:
procs = this_host().spawn_procs(bootstrap=setup_with_spawn)
counter = procs.spawn("counter", Counter, 0)
Expand All @@ -1721,6 +1723,8 @@ def test_setup() -> None:
time.sleep(10)


# oss_skip: passes internally but fails on CI with "ValueError: error spawning proc mesh: statuses: Timeout(30.000905376s)=0..1"
@pytest.mark.oss_skip
def test_setup_async() -> None:
procs = this_host().spawn_procs(bootstrap=async_setup_with_spawn)
counter = procs.spawn("counter", Counter, 0)
Expand Down
Loading