Manually pass in the coverage and test result report files and disable automatic search.
This commit is contained in:
committed by
Stefan Ceriu
parent
2714edf3d6
commit
0287611333
4
.github/workflows/integration-tests.yml
vendored
4
.github/workflows/integration-tests.yml
vendored
@@ -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
|
||||
|
||||
4
.github/workflows/ui_tests.yml
vendored
4
.github/workflows/ui_tests.yml
vendored
@@ -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
|
||||
|
||||
4
.github/workflows/unit_tests.yml
vendored
4
.github/workflows/unit_tests.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user