Skip to content

Commit c1c8fc2

Browse files
committed
doc: Adding doc strings to tests
1 parent 6c077b3 commit c1c8fc2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,8 @@ def inf_instance_family(inf_instance_type):
471471
@pytest.fixture(scope="session")
472472
def imagenet_train_subset(request, sagemaker_session, tmpdir_factory):
473473
"""
474-
Copies the Imagenet dataset from the bucket it's hosted in to the local bucket in the test region
474+
Copies the Imagenet dataset from the bucket it's hosted in to the local bucket in the test region.
475+
Due to licensing issues, access to this dataset is controlled through an allowlist
475476
"""
476477
local_path = tmpdir_factory.mktemp("imagenet_tfrecords_train_subset")
477478
sagemaker_session.download_data(

tests/integ/test_training_compiler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def gpu_instance_type(request):
3434
@pytest.fixture(scope="module")
3535
def imagenet_val_set(request, sagemaker_session, tmpdir_factory):
3636
"""
37-
Copies the dataset from the bucket it's hosted in to the local bucket in the test region
37+
Copies the Imagenet dataset from the bucket it's hosted in to the local bucket in the test region.
38+
Due to licensing issues, access to this dataset is controlled through an allowlist
3839
"""
3940
local_path = tmpdir_factory.mktemp("trcomp_imagenet_val_set")
4041
sagemaker_session.download_data(

0 commit comments

Comments
 (0)