ci: measure coverage by package name + editable install (fix 0% in CI)
build-image / test (push) Successful in 12s
build-image / build (push) Successful in 16s

This commit is contained in:
2026-07-04 18:43:26 -04:00
parent 43bbbb6bbb
commit 7c36850b72
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install (with dev extras)
run: pip install --quiet ".[dev]"
- name: Install (editable, with dev extras)
run: pip install --quiet -e ".[dev]"
- name: Test + coverage gate (>=90%)
run: pytest
+1 -1
View File
@@ -114,7 +114,7 @@ default.unicode = true
default.locale = "en-us"
[tool.pytest.ini_options]
addopts = "-q --cov=src/intervals_mcp_server --cov-report=term-missing --cov-fail-under=90"
addopts = "-q --cov=intervals_mcp_server --cov-report=term-missing --cov-fail-under=90"
testpaths = ["tests"]
python_files = "test_*.py"
asyncio_default_fixture_loop_scope = "function"