summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua>2024-09-14 03:11:11 +0200
committerGitHub <noreply@github.com>2024-09-14 03:11:11 +0200
commitabdc669e502e3fdf583cb3e2ffaf500d040cb1d8 (patch)
treed5d54eefdd8b4737fc2c11f73ad5b955de78e35b /Makefile
parentValidate org-user membership from gateway (#15508) (diff)
downloadawx-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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2284884de9..7ae02197c0 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: