forked from nilearn/nilearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecov.yml
More file actions
23 lines (22 loc) · 680 Bytes
/
Copy pathcodecov.yml
File metadata and controls
23 lines (22 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# similar to scikit-learn .codecov.yml
coverage:
status:
project:
default:
# Commits pushed to main should not make the overall
# project coverage decrease by more than 1%:
target: auto
threshold: 1%
patch:
default:
# Be tolerant on slight code coverage diff on PRs to limit
# noisy red coverage status on github PRs.
target: auto
threshold: 1%
ignore:
- "*externals/.*" # ignore folders and all its contents
- "nilearn/tests/" # ignore folders related to testing
- "nilearn/*/tests/"
- "nilearn/conftest.py"
- "nilearn/version.py"
- "nilearn/datasets/data/convert_templates.py"