Skip to content

Commit 13bcf1b

Browse files
committed
Fixed coverage for real
1 parent fefb844 commit 13bcf1b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ exclude_lines = [
138138
[tool.coverage.run]
139139
omit = [
140140
"bench/compress_normal.py",
141+
"src/zarr/testing/conftest.py", # only for downstream projects
141142
]
142143

143144
[tool.hatch]

src/zarr/testing/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22

33

4-
def pytest_configure(config: pytest.Config) -> None: # pragma: no cover
4+
def pytest_configure(config: pytest.Config) -> None:
55
# The tests in zarr.testing are intended to be run by downstream projects.
66
# To allow those downstream projects to run with `--strict-markers`, we need
77
# to register an entry point with pytest11 and register our "plugin" with it,

0 commit comments

Comments
 (0)