Skip to content

Commit 65b2b3c

Browse files
committed
ready for review
1 parent 931afe0 commit 65b2b3c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ dependencies:
3232
- mkdocstrings-python
3333
- pytest
3434
- pytest-cov
35-
- pytest-recording
3635
- ruff
3736
# Development Dependencies - Demos
3837
- jupyterlab

test/test_multistore.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ def test_generate_preload(self):
291291
self.assertCountEqual(data_vars, ds.data_vars.keys())
292292

293293
# run again, preload and cube generation is skipped
294+
config_dict = get_config_dict5()
294295
with self.assertLogs("xcube.multistore", level="INFO") as cm:
295296
msds = MultiSourceDataStore(config_dict)
296297
msds.generate()
@@ -307,6 +308,7 @@ def test_generate_preload(self):
307308
msds.stores.storage.delete_data("senf_andorra.zarr")
308309

309310
# preload is excluded, since already preloaded
311+
config_dict = get_config_dict5()
310312
with self.assertLogs("xcube.multistore", level="INFO") as cm:
311313
msds = MultiSourceDataStore(config_dict)
312314
msds.generate()
@@ -321,6 +323,7 @@ def test_generate_preload(self):
321323
msds.stores.storage.delete_data("senf_andorra.zarr")
322324

323325
# preload with vizualisation
326+
config_dict = get_config_dict5()
324327
config_dict["general"]["visualize"] = True
325328
config_dict["general"]["force_preload"] = True
326329
msds = MultiSourceDataStore(config_dict)

0 commit comments

Comments
 (0)