Skip to content

Add an initial codecov.yml file to tell it to ignore test and examples #1437

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Components allow you to isolate and categorize coverage data from your project with virtual filters
component_management:
individual_components:
- component_id: cmd2 # this is an identifier that should not be changed
name: cmd2 # this is a display name, and can be changed freely
paths:
- cmd2/**
- component_id: plugins
name: plugins
paths:
- plugins/**

# Ignore certain paths, all files under these paths will be skipped during processing
ignore:
- "examples" # ignore example code folder
- "tests" # ignore unit test code folder
- "tests_isolated" # ignore integration test code folder
Loading