From d442f0396947c15b3ca9640609012151ceca5983 Mon Sep 17 00:00:00 2001 From: Prekzursil Date: Tue, 3 Mar 2026 09:27:34 +0200 Subject: [PATCH] ci: keep codecov uploads active on failing test steps Co-authored-by: Codex --- .github/workflows/codecov-analytics.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/codecov-analytics.yml b/.github/workflows/codecov-analytics.yml index 27eb5522..3f61069c 100644 --- a/.github/workflows/codecov-analytics.yml +++ b/.github/workflows/codecov-analytics.yml @@ -26,16 +26,19 @@ jobs: node-version: '20' - name: Backend coverage + continue-on-error: true run: | mkdir -p coverage python -m pip install --upgrade pip python -m pip install -r backend/requirements.txt pytest pytest-cov python -m pytest backend --cov=backend --cov-report=xml:backend/coverage.xml - name: Frontend coverage + continue-on-error: true run: | npm --prefix frontend/webcoder_ui ci npm --prefix frontend/webcoder_ui test -- --coverage --watch=false - name: Upload coverage to Codecov + if: ${{ always() }} uses: codecov/codecov-action@v5 with: files: backend/coverage.xml,frontend/webcoder_ui/coverage/lcov.info