From 80ed57029f793e3a38ec0fafce090b7e507d6b50 Mon Sep 17 00:00:00 2001 From: Bryann Valderrama Date: Wed, 13 Nov 2024 12:27:01 -0500 Subject: [PATCH] fix: omit folders for coverage --- Makefile | 2 +- setup.cfg | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 922ab2dc..144c4f25 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ python-quality-test: run-tests: python-test python-quality-test run-integration-tests: install-dev-dependencies - pytest -rPf ./eox_core --ignore-glob='**/unit/*' --ignore-glob='**/edxapp_wrapper/*' + pytest -rPf ./eox_core --ignore-glob='**/unit/*' --ignore-glob='**/edxapp_wrapper/*' --ignore-glob='**/api/v1/*' upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade upgrade: ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in diff --git a/setup.cfg b/setup.cfg index c2189f97..02ebd5f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,9 @@ data_file = .coverage omit = venv/* */backends/* + */edxapp_wrapper/* + */tests/* + */settings/* node_modules/* .tox/* ./setup.py