Skip to content

Commit

Permalink
skip on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
awaelchli committed Jul 10, 2024
1 parent 7733468 commit 22c5dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/streaming/test_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def _get_simulated_s3_dataloader(cache_dir, data_dir):
return StreamingDataLoader(dataset, batch_size=2, num_workers=1)


@pytest.mark.skipif(sys.platform == "win32", reason="Not tested on windows and MacOs")
@pytest.mark.skipif(sys.platform in ("win32", "darwin"), reason="Not tested on windows and MacOs")
@mock.patch.dict(os.environ, {}, clear=True)
def test_dataset_resume_on_future_chunks(tmpdir):
"""This test is constructed to test resuming from a chunk past the first chunk, when subsequent chunks don't have
Expand Down

0 comments on commit 22c5dca

Please sign in to comment.