File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ requires = [
135
135
" setuptools>=61.0.0" ,
136
136
" wheel" ,
137
137
" setuptools_scm[toml]>=7.0" ,
138
- " check-manifest"
138
+ " check-manifest" ,
139
139
]
140
140
141
141
[tool .pixi .project ]
@@ -171,8 +171,10 @@ rust = "*"
171
171
# Define commands to run within the test environments
172
172
[tool .pixi .feature .test .tasks ]
173
173
run-mypy = { cmd = " mypy virtualizarr" }
174
- run-tests = { cmd = " pytest -n auto --run-network-tests --verbose" }
175
- run-tests-no-network = { cmd = " pytest -n auto" }
174
+ # Using '--dist loadscope' (rather than default of '--dist load' when '-n auto'
175
+ # is used), reduces test hangs that appear to be macOS-related.
176
+ run-tests = { cmd = " pytest -n auto --dist loadscope --run-network-tests --verbose" }
177
+ run-tests-no-network = { cmd = " pytest -n auto --verbose" }
176
178
run-tests-cov = { cmd = " pytest -n auto --run-network-tests --verbose --cov=term-missing" }
177
179
run-tests-xml-cov = { cmd = " pytest -n auto --run-network-tests --verbose --cov-report=xml" }
178
180
run-tests-html-cov = { cmd = " pytest -n auto --run-network-tests --verbose --cov-report=html" }
@@ -226,8 +228,6 @@ module = [
226
228
]
227
229
ignore_missing_imports = true
228
230
229
-
230
-
231
231
[tool .ruff ]
232
232
# Same as Black.
233
233
line-length = 88
You can’t perform that action at this time.
0 commit comments