We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4515277 + 5ef8e90 commit ca1718aCopy full SHA for ca1718a
test/webapi/test_s3buckethandlers.py
@@ -31,13 +31,19 @@ class S3BucketHandlersTest(unittest.TestCase):
31
def test_open_cube_from_xube_server_rel_path(self):
32
ds = open_cube('s3bucket/local',
33
format_name='zarr',
34
+ s3_kwargs={
35
+ 'anon': True
36
+ },
37
s3_client_kwargs=dict(endpoint_url=SERVER_URL))
38
self.assertCubeOk(ds)
39
40
@unittest.skipUnless(XCUBE_SERVER_IS_RUNNING, SKIP_HELP)
41
def test_open_cube_from_xube_server_abs_path(self):
42
ds = open_cube('http://localhost:8080/s3bucket/local',
- format_name='zarr')
43
+ format_name='zarr',
44
45
46
+ })
47
48
49
def assertCubeOk(self, ds):
0 commit comments