From 02876113331726602ac89ddddc6422ce7e06a9c7 Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Tue, 16 Dec 2025 15:12:54 +0200 Subject: [PATCH] Manually pass in the coverage and test result report files and disable automatic search. --- .github/workflows/integration-tests.yml | 4 ++++ .github/workflows/ui_tests.yml | 4 ++++ .github/workflows/unit_tests.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a5d87fd9d..cb4fda868 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -82,6 +82,8 @@ jobs: uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: report_type: coverage + files: fastlane/test_output/integration-cobertura.xml + disable_search: true fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: integrationtests @@ -98,6 +100,8 @@ jobs: continue-on-error: true with: report_type: test_results + files: fastlane/test_output/integration-junit.xml + disable_search: true fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: integrationtests diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index 2e0a87837..eeddbf3d2 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -72,6 +72,8 @@ jobs: uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: report_type: coverage + files: fastlane/test_output/ui-cobertura.xml + disable_search: true fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: uitests @@ -88,6 +90,8 @@ jobs: continue-on-error: true with: report_type: test_results + files: fastlane/test_output/ui-junit.xml + disable_search: true fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: uitests diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index c8af9dfc8..184ce65f8 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -68,6 +68,8 @@ jobs: uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 with: report_type: coverage + files: fastlane/test_output/unit-cobertura.xml,fastlane/test_output/preview-cobertura.xml + disable_search: true fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: unittests @@ -86,6 +88,8 @@ jobs: continue-on-error: true with: report_type: test_results + files: fastlane/test_output/unit-junit.xml,fastlane/test_output/preview-junit.xml + disable_search: true fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: unittests