diff --git a/test/dataloader2/test_random.py b/test/dataloader2/test_random.py index 7e575afd7..403c670a6 100644 --- a/test/dataloader2/test_random.py +++ b/test/dataloader2/test_random.py @@ -30,6 +30,7 @@ def _random_fn(data): class DeterminismTest(TestCase): + @unittest.skipIf(IS_WINDOWS, "Remove when https://github.com/pytorch/data/issues/857 is fixed") @parametrize("num_workers", [0, 8]) def test_proto_rs_determinism(self, num_workers): data_length = 64 diff --git a/test/test_distributed.py b/test/test_distributed.py index 87ce92bb9..cb62885fb 100644 --- a/test/test_distributed.py +++ b/test/test_distributed.py @@ -293,6 +293,7 @@ def test_elastic_training_dl1(self, backend) -> None: ], ) + @unittest.skipIf(IS_WINDOWS, "Remove when https://github.com/pytorch/data/issues/857 is fixed") @backend_parametrize @parametrize("num_workers", [0, 8]) def test_proto_rs_dl2(self, backend, num_workers) -> None: