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.
1 parent 9e6290e commit 8f3703fCopy full SHA for 8f3703f
sgkit/tests/io/test_dataset.py
@@ -58,7 +58,7 @@ def test_save_unequal_chunks_error():
58
# Normal zarr errors shouldn't be caught
59
with pytest.raises(
60
(FileExistsError, ValueError),
61
- match="(path '' contains an array|Store already exists)",
+ match="(path '' contains an array|is not empty)",
62
):
63
save_dataset(ds, {".zarray": ""})
64
sgkit/tests/test_testing.py
@@ -7,6 +7,9 @@
7
from sgkit.testing import simulate_genotype_call_dataset
8
9
10
+@pytest.mark.filterwarnings(
11
+ "ignore::UserWarning"
12
+) # codec `vlen-utf8` not in Zarr v3 spec`
13
def test_simulate_genotype_call_dataset__zarr(tmp_path):
14
path = str(tmp_path / "ds.zarr")
15
ds = simulate_genotype_call_dataset(n_variant=10, n_sample=10)
0 commit comments