Skip to content

Commit bae04d7

Browse files
[HOTFIX] another fix for coveralls tool breaking CI/CD (- WIP #130 -)
Changes in file .github/actions/test-reporter-upload/action.yml: * don't force coverage type
1 parent d94f204 commit bae04d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/test-reporter-upload/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,9 @@ runs:
312312
COVERALLS_TOOL: ${{ steps.output_upload_tools.outputs.coveralls_executable }}
313313
run: |
314314
if [[ "${{ inputs.tests-outcome }}" == "success" ]] ; then
315-
${COVERALLS_TOOL} report ./coverage.xml --base-path="${{ github.workspace }}" --format=python --service-job-id=${{ github.run_id }} --parallel --job-flag='${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}' --build-number=${{ inputs.job_code }} || exit 1 ;
315+
${COVERALLS_TOOL} report ./coverage.xml --base-path="${{ github.workspace }}" --service-job-id=${{ github.run_id }} --parallel --job-flag='${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}' --build-number=${{ inputs.job_code }} || exit 1 ;
316316
else
317-
${COVERALLS_TOOL} report ./coverage.xml --base-path="${{ github.workspace }}" --allow-empty --format=python --service-job-id=${{ github.run_id }} --parallel --job-flag='${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}' --build-number=${{ inputs.job_code }} || exit 1 ;
317+
${COVERALLS_TOOL} report ./coverage.xml --base-path="${{ github.workspace }}" --allow-empty --service-job-id=${{ github.run_id }} --parallel --job-flag='${{ steps.output_os.outputs.os }}-${{ steps.output_python.outputs.python-version }}' --build-number=${{ inputs.job_code }} || exit 1 ;
318318
fi
319319
- name: "Evaluate Coverage Report Task"
320320
id: coverage_outcome

0 commit comments

Comments
 (0)