From 87415214f334b9d8f356ce773b29ed459b8a8a23 Mon Sep 17 00:00:00 2001 From: Marc Sommerhalder Date: Thu, 19 Dec 2024 13:47:42 +0100 Subject: [PATCH] Add branch coverage --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ea0aedf..a278a97 100644 --- a/Makefile +++ b/Makefile @@ -150,11 +150,11 @@ start-local-db: ## Run the local db as docker container .PHONY: test-ci test-ci: ## Run tests in the CI - $(TEST) --cov --cov-report=xml:coverage.xml + $(TEST) --cov --cov-branch --cov-report=xml:coverage.xml .PHONY: test test: ## Run tests locally - $(TEST) --cov --cov-report=html + $(TEST) --cov --cov-branch --cov-report=html .PHONY: setup-bod setup-bod: ## Set up the bod locally