Skip to content

Commit 26c70a8

Browse files
committed
Temporarily skip distributed testing for ProtoMPRS on Windows (#858)
Summary: See the issue #857 Pull Request resolved: #858 Reviewed By: NivekT, dahsh Differential Revision: D40646733 Pulled By: ejguan fbshipit-source-id: 346151425cab53a236079311adee8a8d6364b0f4
1 parent f4deb1a commit 26c70a8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

test/dataloader2/test_random.py

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def _random_fn(data):
3030

3131

3232
class DeterminismTest(TestCase):
33+
@unittest.skipIf(IS_WINDOWS, "Remove when https://github.com/pytorch/data/issues/857 is fixed")
3334
@parametrize("num_workers", [0, 8])
3435
def test_proto_rs_determinism(self, num_workers):
3536
data_length = 64

test/test_distributed.py

+1
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@ def test_elastic_training_dl1(self, backend) -> None:
293293
],
294294
)
295295

296+
@unittest.skipIf(IS_WINDOWS, "Remove when https://github.com/pytorch/data/issues/857 is fixed")
296297
@backend_parametrize
297298
@parametrize("num_workers", [0, 8])
298299
def test_proto_rs_dl2(self, backend, num_workers) -> None:

0 commit comments

Comments
 (0)