File tree 3 files changed +13
-44
lines changed
3 files changed +13
-44
lines changed Original file line number Diff line number Diff line change 1
- # codecov can find this file anywhere in the repo, so we don't need to clutter
2
- # the root folder.
3
- # comment: false
4
-
5
- codecov :
6
- notify :
7
- require_ci_to_pass : no
8
-
9
1
coverage :
10
2
status :
11
- patch :
3
+ project : # more options at https://docs.codecov.com/docs/commit-status
12
4
default :
13
- target : ' 70'
14
- if_no_uploads : error
15
- if_not_found : success
16
- if_ci_failed : failure
17
- project :
18
- default : false
19
- library :
20
- target : auto
21
- if_no_uploads : error
22
- if_not_found : success
23
- if_ci_failed : error
24
- paths : ' !*/tests/.*'
25
-
26
- tests :
27
- target : 97.9%
28
- paths : ' */tests/.*'
29
- if_not_found : success
30
-
31
- flags :
32
- tests :
33
- paths :
34
- - tests/
5
+ target : auto # use the coverage from the base commit, fail if coverage is lower
6
+ threshold : 0% # allow the coverage to drop by
7
+
8
+ comment :
9
+ layout : " diff, flags, files"
10
+ behavior : default
11
+ require_changes : false
12
+ require_base : false # [true :: must have a base report to post]
13
+ require_head : false # [true :: must have a head report to post]
14
+ hide_project_coverage : false # [true :: only show coverage on the git diff aka patch coverage]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 14
14
project : diffpy.utils
15
15
c_extension : false
16
16
headless : false
17
+ secrets :
18
+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments