diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <wk@sydorenko.org.ua> | 2024-09-17 15:53:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 15:53:44 +0200 |
commit | 0a4370acf0765a2f29f872b9fa2518e933e7dacc (patch) | |
tree | 865e1104061426a39b7aa8f243c56074f88e4ac4 /Makefile | |
parent | 🧪 Use xunit1 in pytest by default (#15524) (diff) | |
download | awx-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}"; \ |