Skip to content

Skip python accumulator and reducer tests for oss #674

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions python/tests/_monarch/test_mailbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from typing import Any, Callable, cast, final, Generic, Iterable, TYPE_CHECKING, TypeVar

import monarch
import pytest

from monarch._rust_bindings.monarch_hyperactor.actor import (
MethodSpecifier,
Expand Down Expand Up @@ -95,6 +96,7 @@ async def allocate() -> ProcMesh:
return proc_mesh


@pytest.mark.oss_skip # pyre-ignore[56]
async def test_accumulator() -> None:
proc_mesh = await allocate()
mailbox: Mailbox = proc_mesh.client
Expand Down Expand Up @@ -151,6 +153,7 @@ async def handle(
response_port.send(f"msg{i}")


@pytest.mark.oss_skip # pyre-ignore[56]
async def test_reducer() -> None:
proc_mesh = await allocate()
actor_mesh = await proc_mesh.spawn_nonblocking("test", MyActor)
Expand Down
Loading