- Add CODECOV_TOKEN to codecov-action uploads (required for v4) - Change unit test coverage from single file to entire package - Add codecov.yml with coverage thresholds and flags Note: CODECOV_TOKEN secret must be added to repository settings. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
521 B
YAML
33 lines
521 B
YAML
coverage:
|
|
precision: 2
|
|
round: down
|
|
range: "60...100"
|
|
status:
|
|
project:
|
|
default:
|
|
target: auto
|
|
threshold: 5%
|
|
patch:
|
|
default:
|
|
target: 80%
|
|
threshold: 5%
|
|
|
|
comment:
|
|
layout: "reach,diff,flags,files"
|
|
behavior: default
|
|
require_changes: true
|
|
|
|
flags:
|
|
unit:
|
|
paths:
|
|
- src/ble_reticulum/
|
|
carryforward: true
|
|
integration:
|
|
paths:
|
|
- src/ble_reticulum/
|
|
carryforward: true
|
|
|
|
ignore:
|
|
- "tests/**/*"
|
|
- "**/__pycache__/**"
|
|
- "**/conftest.py"
|