Skip to content

Commit 3e42686

Browse files
benjipelletierfacebook-github-bot
authored andcommitted
Skip failing remote_aloc tests in oss ci (#1382)
Summary: Pull Request resolved: #1382 These tests are blocking CI in OSS. Will work throughout the week to get it green again, tracked by T239903092 Reviewed By: samlurye Differential Revision: D83583189 fbshipit-source-id: 8e21d80a9640e584e3b43ecb80f2c69f4377b1ae
1 parent 7e52cb1 commit 3e42686

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

python/tests/test_allocator.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from unittest import mock
2121

2222
import cloudpickle
23+
import pytest
2324

2425
import torch
2526
import torch.distributed as dist
@@ -594,6 +595,8 @@ async def test_torchx_remote_alloc_initializer_no_match_label_gt_1_meshes(
594595
AllocSpec(AllocConstraints(), host=1, gpu=1)
595596
).initialized
596597

598+
# Skipping test temporarily due to blocking OSS CI TODO: @rusch T232884876
599+
@pytest.mark.oss_skip # pyre-ignore[56]: Pyre cannot infer the type of this pytest marker
597600
async def test_torchx_remote_alloc_initializer_no_match_label_1_mesh(self) -> None:
598601
server = ServerSpec(
599602
name=UNUSED,
@@ -624,6 +627,8 @@ async def test_torchx_remote_alloc_initializer_no_match_label_1_mesh(self) -> No
624627
)
625628
self.assert_computed_world_size(results, 4) # 1x4 mesh
626629

630+
# Skipping test temporarily due to blocking OSS CI TODO: @rusch T232884876
631+
@pytest.mark.oss_skip # pyre-ignore[56]: Pyre cannot infer the type of this pytest marker
627632
async def test_torchx_remote_alloc_initializer_with_match_label(self) -> None:
628633
server = ServerSpec(
629634
name=UNUSED,

0 commit comments

Comments
 (0)