From 0a4370acf0765a2f29f872b9fa2518e933e7dacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Tue, 17 Sep 2024 15:53:44 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Delegate=20source=20filtering=20?= =?UTF-8?q?to=20coverage.py=20(#15528)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7ae02197c0a0..532c5e3a22fb 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}"; \