-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
42 lines (38 loc) · 1.59 KB
/
codecov.yml
File metadata and controls
42 lines (38 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Codecov Configuration
# Documentation: https://docs.codecov.com/docs/codecov-yaml
coverage:
status:
project:
default:
target: auto
threshold: 1%
informational: false
patch:
default:
target: 80%
threshold: 5%
informational: false
# Ignore paths from coverage reporting
# Program.cs contains ASP.NET Core startup/middleware configuration - tested via integration tests
# MAUI app files contain platform-specific initialization and UI code - requires platform-specific testing
ignore:
- "TerminplanerApi/Program.cs" # API startup/middleware configuration
- "TerminplanerMaui/**" # Entire MAUI project (platform-specific code)
- "**/MauiProgram.cs" # MAUI app initialization
- "**/App.xaml.cs" # MAUI app definition
- "**/AppShell.xaml.cs" # MAUI shell/navigation
- "**/*.xaml.cs" # All XAML code-behind files
- "**/Platforms/**" # Platform-specific code (Android, iOS, Windows, macOS)
- "**/bin/**" # Build output
- "**/obj/**" # Intermediate build files
- "**/*.Designer.cs" # Generated designer files
- "**/Migrations/**" # Database migrations
comment:
layout: "reach,diff,flags,tree,footer"
behavior: default
require_changes: false
require_base: false
require_head: true
# GitHub Checks integration
github_checks:
annotations: true