diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua> | 2024-09-14 03:11:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 03:11:11 +0200 |
commit | abdc669e502e3fdf583cb3e2ffaf500d040cb1d8 (patch) | |
tree | d5d54eefdd8b4737fc2c11f73ad5b955de78e35b /Makefile | |
parent | Validate org-user membership from gateway (#15508) (diff) | |
download | awx-abdc669e502e3fdf583cb3e2ffaf500d040cb1d8.tar.xz awx-abdc669e502e3fdf583cb3e2ffaf500d040cb1d8.zip |
🧪 Pass specific report files to `codecov-cli` (#15520)
The automatic discovery is currently unreliable.
Ref: https://github.com/codecov/codecov-cli/issues/500
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |