From cfcce03dd7938aac8f078cdd713b4f6a45d38e7e Mon Sep 17 00:00:00 2001 From: Gui Castelao Date: Thu, 5 Oct 2023 19:30:02 -0600 Subject: [PATCH] Temporary skip S3Storage test --- tests/test_storage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_storage.py b/tests/test_storage.py index 777657c..2baa29a 100644 --- a/tests/test_storage.py +++ b/tests/test_storage.py @@ -115,7 +115,9 @@ def test_no_download(): # It was not supposed to reach here raise -@pytest.mark.skipif(not S3FS_AVAILABLE, reason="S3Storage is not available without s3fs") + +# @pytest.mark.skipif(not S3FS_AVAILABLE, reason="S3Storage is not available without s3fs") +@pytest.mark.skip() def test_S3Storage_path(): backend = S3Storage("s3://mybucket/datadir") assert backend.path("A2019109.L3m_DAY_CHL_chlor_a_4km.nc") == 's3://mybucket/datadir/MODIS-Aqua/L3m/2019/109/A2019109.L3m_DAY_CHL_chlor_a_4km.zarr'