Skip to content

Commit f1ef022

Browse files
committed
set fail_ci_if_error=false
1 parent cf90af0 commit f1ef022

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/testing.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ env:
3333

3434
# Pin uv version for reproducible builds
3535
# https://github.com/astral-sh/uv/releases
36-
UV_VERSION: "0.9.21" # released on 30-12-2025
36+
UV_VERSION: "0.9.21" # released on 2025-12-30
37+
38+
# Pin just version for reproducible builds
39+
# https://github.com/casey/just/releases
40+
JUST_VERSION: "1.46.0" # released on 2026-01-02
3741

3842
on:
3943
pull_request:
@@ -104,7 +108,9 @@ jobs:
104108
- name: "Upload coverage to Codecov"
105109
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 released on 09-12-2025
106110
with:
107-
fail_ci_if_error: true # false is default
111+
# Dependabot PRs cannot access CODECOV_TOKEN, so the upload fails even when tests pass.
112+
# Coverage is uploaded correctly after merge to main where the token is available.
113+
fail_ci_if_error: false # false is default
108114
files: var/coverage/pytest-cobertura.xml
109115
flags: unittests # optional
110116
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos

0 commit comments

Comments
 (0)