We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 447f690 commit a38b7f2Copy full SHA for a38b7f2
.github/.codecov.yml
@@ -1,3 +1,6 @@
1
+codecov:
2
+ allow_coverage_offsets: true # Avoid "Missing base report" due to committing with "[CI skip]"
3
+
4
comment:
5
require_changes: true
6
layout: "diff, files"
@@ -7,5 +10,5 @@ coverage:
7
10
project:
8
11
default:
9
12
target: auto
- threshold: 1%
13
+ threshold: 0.5%
14
patch: off
.github/workflows/pytest.yml
@@ -33,10 +33,11 @@ jobs:
33
pytest --cov=comfy_cli --cov-report=xml .
34
35
- name: Upload coverage to Codecov
36
- uses: codecov/codecov-action@v4
+ uses: codecov/codecov-action@v5
37
with:
38
token: ${{ secrets.CODECOV_TOKEN }}
39
files: ./coverage.xml
40
flags: unittests
41
name: codecov-umbrella
42
fail_ci_if_error: true
43
+ verbose: true
0 commit comments