File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ hooks.vcs.version-file = "src/zarr/_version.py"
158158dependency-groups = [" test" ]
159159
160160[tool .hatch .envs .test .env-vars ]
161+ COVERAGE_PROCESS_START = " pyproject.toml"
161162
162163[[tool .hatch .envs .test .matrix ]]
163164python = [" 3.12" , " 3.13" , " 3.14" ]
@@ -175,20 +176,20 @@ matrix.deps.dependency-groups = [
175176
176177[tool .hatch .envs .test .scripts ]
177178run-coverage = [
178- " COVERAGE_PROCESS_START=pyproject.toml coverage run -m pytest -n auto --dist loadgroup --ignore tests/benchmarks --junitxml=junit.xml -o junit_family=legacy {args:}" ,
179+ " coverage run -m pytest -n auto --dist loadgroup --ignore tests/benchmarks --junitxml=junit.xml -o junit_family=legacy {args:}" ,
179180 " coverage combine" ,
180181 " coverage xml" ,
181182]
182183run-coverage-html = [
183- " COVERAGE_PROCESS_START=pyproject.toml coverage run -m pytest -n auto --dist loadgroup --ignore tests/benchmarks {args:}" ,
184+ " coverage run -m pytest -n auto --dist loadgroup --ignore tests/benchmarks {args:}" ,
184185 " coverage combine" ,
185186 " coverage html" ,
186187]
187188run = " pytest -n auto --dist loadgroup --ignore tests/benchmarks {args:}"
188189run-verbose = " run-coverage --verbose"
189190run-mypy = " mypy src"
190191run-hypothesis = [
191- " COVERAGE_PROCESS_START=pyproject.toml coverage run -m pytest -nauto --dist loadgroup --run-slow-hypothesis tests/test_properties.py tests/test_store/test_stateful* {args:}" ,
192+ " coverage run -m pytest -nauto --dist loadgroup --run-slow-hypothesis tests/test_properties.py tests/test_store/test_stateful* {args:}" ,
192193 " coverage combine" ,
193194 " coverage xml" ,
194195]
You can’t perform that action at this time.
0 commit comments