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 6cb866e commit 844fceeCopy full SHA for 844fcee
Makefile
@@ -21,10 +21,10 @@ test:
21
uv run pytest -n auto --cov
22
23
ci-test:
24
- uv run pytest
+ uv run pytest -n 0
25
26
ci-coverage:
27
- uv run pytest --cov --cov-report lcov
+ uv run pytest -n 0 --cov --cov-report lcov
28
29
typing:
30
uv run mypy
pyproject.toml
@@ -109,7 +109,7 @@ ignore_missing_imports = true
109
110
[tool.pytest.ini_options]
111
minversion = "6.0"
112
-addopts = "-n auto --dist loadscope --cov-report=term-missing"
+addopts = "-n auto --cov-report=term-missing"
113
testpaths = [
114
"tests",
115
]
0 commit comments