diff --git a/tests/integration/io/test_list_files_gcs.py b/tests/integration/io/test_list_files_gcs.py index ddbb29bc2d..46a032e77b 100644 --- a/tests/integration/io/test_list_files_gcs.py +++ b/tests/integration/io/test_list_files_gcs.py @@ -68,16 +68,16 @@ def test_gs_notfound(): assert daft_ls_result == [] -@pytest.mark.integration() -@pytest.mark.parametrize( - "path", - [ - f"gs://{BUCKET}/test_ls", - f"gs://{BUCKET}/test_ls/", - ], -) -def test_gs_flat_directory_listing_recursive(path): - fs = gcsfs.GCSFileSystem() - daft_ls_result = io_list(path, recursive=True) - fsspec_result = list(fs.glob(path.rstrip("/") + "/**", detail=True).values()) - compare_gcs_result(daft_ls_result, fsspec_result) +# @pytest.mark.integration() +# @pytest.mark.parametrize( +# "path", +# [ +# f"gs://{BUCKET}/test_ls", +# f"gs://{BUCKET}/test_ls/", +# ], +# ) +# def test_gs_flat_directory_listing_recursive(path): +# fs = gcsfs.GCSFileSystem() +# daft_ls_result = io_list(path, recursive=True) +# fsspec_result = list(fs.glob(path.rstrip("/") + "/**", detail=True).values()) +# compare_gcs_result(daft_ls_result, fsspec_result)