We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f845d commit 834f03aCopy full SHA for 834f03a
2 files changed
.github/codecov.yml
@@ -0,0 +1,25 @@
1
+# Settings for Codecov
2
+# \info https://docs.codecov.com/docs/codecov-yaml
3
+# \info https://docs.codecov.com/docs/codecovyml-reference
4
+# \info https://docs.codecov.com/docs/commit-status
5
+# \info https://docs.codecov.com/docs/ignoring-paths
6
+
7
+coverage:
8
+ status:
9
+ project:
10
+ default:
11
+ threshold: 1%
12
+ patch:
13
14
15
16
+parsers:
17
+ gcov:
18
+ branch_detection:
19
+ conditional: no
20
+ loop: no
21
+ method: no
22
+ macro: no
23
24
+ignore:
25
+ - "test"
.github/workflows/coverage.yml
@@ -31,9 +31,6 @@ jobs:
31
uses: codecov/codecov-action@v5
32
with:
33
directory: ${{github.workspace}}/build
34
- exclude: './test/'
35
- gcov_ignore: './test/**/*'
36
fail_ci_if_error: true
37
token: ${{ secrets.CODECOV_TOKEN }}
38
verbose: true
39
-
0 commit comments