diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f2aeeb84537..c8b8c9c34428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,8 @@ jobs: ${{ toJSON(env.UPSTREAM_REPOSITORY_ID == github.repository_id) }} + files: >- + ${{ steps.make-run.outputs.cov-report-files }} flags: >- CI-GHA, pytest, @@ -85,6 +87,8 @@ jobs: ${{ toJSON(env.UPSTREAM_REPOSITORY_ID == github.repository_id) }} + files: >- + ${{ steps.make-run.outputs.test-result-files }} flags: >- CI-GHA, pytest, diff --git a/Makefile b/Makefile index 2284884de9ed..7ae02197c0a0 100644 --- a/Makefile +++ b/Makefile @@ -356,8 +356,8 @@ test_coverage: $(MAKE) test PYTEST_ARGS="--create-db --cov=awx --cov-report=xml --junitxml=reports/junit.xml" @if [ "${GITHUB_ACTIONS}" = "true" ]; \ then \ - echo 'cov-report-files=coverage.xml' >> "${GITHUB_OUTPUT}"; \ - echo 'test-result-files=reports/junit.xml' >> "${GITHUB_OUTPUT}"; \ + echo 'cov-report-files=reports/coverage.xml' >> "${GITHUB_OUTPUT}"; \ + echo 'test-result-files=awxkit/report.xml,reports/junit.xml' >> "${GITHUB_OUTPUT}"; \ fi test_migrations: