From 78554baa61e1d208c8396528e40497cad4bd72fb Mon Sep 17 00:00:00 2001 From: Rishab Parthasarathy <56666587+rishab-partha@users.noreply.github.com> Date: Fri, 18 Aug 2023 11:21:41 -0700 Subject: [PATCH] Fix notebooks v2 (#2448) * fix autoresume with slashed directory * Revert "fix autoresume with slashed directory" This reverts commit 3dfb5f5430da5512bbf418820086b4f291d814f6. revert * change cifar path --- tests/test_notebooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_notebooks.py b/tests/test_notebooks.py index c2608bd8ee..245b4cccc0 100644 --- a/tests/test_notebooks.py +++ b/tests/test_notebooks.py @@ -130,7 +130,7 @@ def test_notebook(notebook: str, device: str, s3_bucket: str): except ImportError as e: raise MissingConditionalImportError('streaming', 'boto3') from e - obj = urlparse('s3://mosaicml-internal-integration-testing/CIFAR-10/') + obj = urlparse('s3://mosaicml-internal-integration-testing/read_only/CIFAR-10/') s3 = boto3.resource('s3') bucket = s3.Bucket(obj.netloc) files = bucket.objects.filter(Prefix=obj.path.lstrip('/'))