1 parent 14fa4a0 commit 8f6b81fCopy full SHA for 8f6b81f
1 file changed
.github/workflows/ci-improved.yml
@@ -111,6 +111,12 @@ jobs:
111
run: |
112
pytest tests/ -v --tb=short --cov=terradev_cli --cov-report=xml --cov-report=html --cov-fail-under=${{ env.COVERAGE_THRESHOLD }} --ignore=tests/test_mcp_handlers.py -n auto || true
113
114
+ - name: CLI-specific coverage report
115
+ run: |
116
+ echo "=== CLI Module Coverage ==="
117
+ pytest tests/ -v --tb=short --cov=terradev_cli.cli --cov-report=term-missing --ignore=tests/test_mcp_handlers.py -n auto || true
118
+ echo "=========================="
119
+
120
- name: Upload coverage to Codecov
121
uses: codecov/codecov-action@v4
122
with:
0 commit comments