Files
Meshtastic-Android/codecov.yml
James Rich c5c8494c9f chore: remove deprecated mesh_service_example module
The mesh_service_example module was a legacy sample app for core:api
service integration that had been marked deprecated. Remove it entirely
along with all CI tasks, codecov config, version catalog entry
(material-icons-extended), path filters, and documentation references.

core:api itself is unaffected and continues to be published for
external consumers (e.g. ATAK plugins).
2026-04-10 16:34:58 -05:00

73 lines
1.7 KiB
YAML

# Codecov configuration for Meshtastic Android
# Ref: https://docs.codecov.com/docs/codecovyml-reference
codecov:
branch: main
coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
target: auto # Coverage should not decrease from base branch
threshold: 1% # Allow 1% drop to reduce noise
patch:
default:
target: auto # New code should have coverage similar to project average
threshold: 1%
base: auto
comment:
layout: "reach,diff,flags,files"
behavior: default
require_changes: false # Post a comment even if coverage doesn't change
flags:
host-unit:
paths:
- .
carryforward: true
android-instrumented:
paths:
- .
carryforward: true
component_management:
default_rules:
statuses:
- type: project
target: auto
threshold: 1%
individual_components:
- component_id: core
name: Core
paths:
- core/**
- component_id: features
name: Features
paths:
- feature/**
- component_id: app
name: App
paths:
- app/**
- component_id: desktop
name: Desktop
paths:
- desktop/**
ignore:
- "**/build/**"
- "**/*.pb.kt" # Generated Protobuf code
- "**/*.aidl" # AIDL interface files
- "**/aidl/**" # Generated AIDL code
- "core/resources/**" # Centralized resources
- "**/test/**" # Unit tests
- "**/androidTest/**" # Instrumented tests
- "**/*Test.kt" # Test files
- "**/*Mock.kt" # Fakes/Mocks
- "**/*Fake.kt" # Fakes
- "**/testing/**" # Shared test utilities