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 d17d8d9 commit f7ef424Copy full SHA for f7ef424
zarr/tests/test_attrs.py
@@ -57,7 +57,7 @@ def test_utf8_encoding(self, zarr_version):
57
testdir = fixdir / "utf8attrs"
58
if not testdir.exists(): # pragma: no cover
59
# store the data - should be one-time operation
60
- testdir.mkdir()
+ testdir.mkdir(parents=True, exist_ok=True)
61
with (testdir / ".zattrs").open("w", encoding="utf-8") as f:
62
f.write('{"foo": "た"}')
63
with (testdir / ".zgroup").open("w", encoding="utf-8") as f:
0 commit comments