summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua>2024-09-17 15:53:44 +0200
committerGitHub <noreply@github.com>2024-09-17 15:53:44 +0200
commit0a4370acf0765a2f29f872b9fa2518e933e7dacc (patch)
tree865e1104061426a39b7aa8f243c56074f88e4ac4 /Makefile
parent🧪 Use xunit1 in pytest by default (#15524) (diff)
downloadawx-0a4370acf0765a2f29f872b9fa2518e933e7dacc.tar.xz
awx-0a4370acf0765a2f29f872b9fa2518e933e7dacc.zip
🧪 Delegate source filtering to coverage.py (#15528)
This drops the coverage source spec from the `pytest` args as it's already configured in `coveragerc` which is a better place for keeping it.
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7ae02197c0..532c5e3a22 100644
--- a/Makefile
+++ b/Makefile
@@ -353,7 +353,7 @@ test:
## Run all API unit tests with coverage enabled.
test_coverage:
- $(MAKE) test PYTEST_ARGS="--create-db --cov=awx --cov-report=xml --junitxml=reports/junit.xml"
+ $(MAKE) test PYTEST_ARGS="--create-db --cov --cov-report=xml --junitxml=reports/junit.xml"
@if [ "${GITHUB_ACTIONS}" = "true" ]; \
then \
echo 'cov-report-files=reports/coverage.xml' >> "${GITHUB_OUTPUT}"; \