Skip to content

Commit

Permalink
add OB to more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
itcarroll committed Apr 12, 2024
1 parent c72118a commit be9f46a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/test_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_store_can_create_s3_fsspec_session(self):

store = Store(self.auth)
self.assertTrue(isinstance(store.auth, Auth))
for daac in ["NSIDC", "PODAAC", "LPDAAC", "ORNLDAAC", "GES_DISC", "ASF"]:
for daac in ["NSIDC", "PODAAC", "LPDAAC", "ORNLDAAC", "GES_DISC", "ASF", "OBDAAC"]:
s3_fs = store.get_s3fs_session(daac=daac)
assert isinstance(s3_fs, s3fs.S3FileSystem)
assert s3_fs.storage_options == expected_storage_options
Expand All @@ -114,6 +114,7 @@ def test_store_can_create_s3_fsspec_session(self):
"ORNL_CLOUD",
"GES_DISC",
"ASF",
"OB_CLOUD",
]:
s3_fs = store.get_s3fs_session(provider=provider)
assert isinstance(s3_fs, s3fs.S3FileSystem)
Expand Down

0 comments on commit be9f46a

Please sign in to comment.