From f91092ac38a0daec6773a16b907e69720ab56cd8 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Thu, 19 Aug 2021 17:39:59 +0200 Subject: [PATCH] tools: update pytest make target to have a report on coverage - allows to have coverage information without using make coverage - make coverage remains recommended to check a commit's content --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4b43eb19..eca4d4c49 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ pcc_internal: check_python_format python_linting mypy_ci pydocstyle .PHONY: pcc_internal pytest: - poetry run pytest -svv --cov=hdk --cov-report=xml tests/ + poetry run pytest -svv --cov=hdk --cov-report=term-missing:skip-covered --cov-report=xml tests/ .PHONY: pytest # Not a huge fan of ignoring missing imports, but some packages do not have typing stubs