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 fefb844 commit 13bcf1bCopy full SHA for 13bcf1b
2 files changed
pyproject.toml
@@ -138,6 +138,7 @@ exclude_lines = [
138
[tool.coverage.run]
139
omit = [
140
"bench/compress_normal.py",
141
+ "src/zarr/testing/conftest.py", # only for downstream projects
142
]
143
144
[tool.hatch]
src/zarr/testing/conftest.py
@@ -1,7 +1,7 @@
1
import pytest
2
3
4
-def pytest_configure(config: pytest.Config) -> None: # pragma: no cover
+def pytest_configure(config: pytest.Config) -> None:
5
# The tests in zarr.testing are intended to be run by downstream projects.
6
# To allow those downstream projects to run with `--strict-markers`, we need
7
# to register an entry point with pytest11 and register our "plugin" with it,
0 commit comments