Compare commits

...

2 Commits

Author SHA1 Message Date
Alexander Whitestone
2ffbf9cc96 fix: Enable xdist with coverage in tox.ini Fixes #932 2026-03-23 22:12:26 -04:00
Alexander Whitestone
f0bf778197 WIP: Gemini Code progress on #932
Automated salvage commit — agent session ended (exit 124).
Work in progress, may need continuation.
2026-03-23 14:34:27 -04:00

15
tox.ini
View File

@@ -104,7 +104,7 @@ commands =
--cov-report=xml:reports/coverage.xml \ --cov-report=xml:reports/coverage.xml \
--cov-fail-under=73 \ --cov-fail-under=73 \
--junitxml=reports/junit.xml \ --junitxml=reports/junit.xml \
-p no:xdist \ -n auto --dist worksteal \
-m "not ollama and not docker and not selenium and not external_api and not skip_ci and not slow" -m "not ollama and not docker and not selenium and not external_api and not skip_ci and not slow"
[testenv:coverage] [testenv:coverage]
@@ -115,7 +115,7 @@ commands =
--cov-report=term-missing \ --cov-report=term-missing \
--cov-report=xml \ --cov-report=xml \
--cov-fail-under=73 \ --cov-fail-under=73 \
-p no:xdist \ -n auto --dist worksteal \
-m "not ollama and not docker and not selenium and not external_api and not slow" -m "not ollama and not docker and not selenium and not external_api and not slow"
[testenv:coverage-html] [testenv:coverage-html]
@@ -126,7 +126,16 @@ commands =
--cov-report=term-missing \ --cov-report=term-missing \
--cov-report=html \ --cov-report=html \
--cov-fail-under=73 \ --cov-fail-under=73 \
-p no:xdist \ -n auto --dist worksteal \
-m "not ollama and not docker and not selenium and not external_api and not slow"
[testenv:coverage-parallel]
description = Parallel coverage report
commands =
pytest tests/ -q --tb=short \
--cov=src \
--cov-report=term-missing \
-n auto --dist worksteal \
-m "not ollama and not docker and not selenium and not external_api and not slow" -m "not ollama and not docker and not selenium and not external_api and not slow"
# ── Pre-push (mirrors CI exactly) ──────────────────────────────────────────── # ── Pre-push (mirrors CI exactly) ────────────────────────────────────────────