From fb9691626d4842205455f2126d08f01cd9d49425 Mon Sep 17 00:00:00 2001 From: "jake.ross" Date: Mon, 29 Dec 2025 08:34:04 -0700 Subject: [PATCH 1/2] feat: update Codecov action to v5 and add report type for test results --- .github/workflows/tests.yml | 3 ++- tests/features/water-level-csv.feature | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 55e045e1f..f491cd180 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -70,8 +70,9 @@ jobs: uv run behave tests/features --tags="@backend and @production and not @skip" --no-capture - name: Upload results to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: + report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov diff --git a/tests/features/water-level-csv.feature b/tests/features/water-level-csv.feature index e703d7036..5974bdd21 100644 --- a/tests/features/water-level-csv.feature +++ b/tests/features/water-level-csv.feature @@ -3,7 +3,6 @@ @cli @backend @BDMS-TBD -@production Feature: Bulk upload water level entries from CSV via CLI As a hydrogeologist or data specialist I want to upload a CSV file containing water level entry data for multiple wells using a CLI command From 71348d1bf726383eda20d261aa6c42dd91dc807f Mon Sep 17 00:00:00 2001 From: "jake.ross" Date: Mon, 29 Dec 2025 08:37:48 -0700 Subject: [PATCH 2/2] feat: remove Codecov test results upload step from workflow --- .github/workflows/tests.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f491cd180..e5b3399c8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -75,8 +75,3 @@ jobs: report_type: test_results token: ${{ secrets.CODECOV_TOKEN }} - - name: Upload test results to Codecov - if: ${{ !cancelled() }} - uses: codecov/test-results-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }}