From 64b5273d12cf3b876a946488ff0810ef59760157 Mon Sep 17 00:00:00 2001 From: Marc Sommerhalder Date: Thu, 19 Dec 2024 12:47:02 +0100 Subject: [PATCH] Use XML for coverage report --- .gitignore | 3 +-- Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ae6a6a6..80bdbe2 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,5 @@ var/ .volumes # Coverage -.coverage -coverage.lcov +coverage.xml htmlcov/ diff --git a/Makefile b/Makefile index 1b1bc9f..ea0aedf 100644 --- a/Makefile +++ b/Makefile @@ -150,7 +150,7 @@ start-local-db: ## Run the local db as docker container .PHONY: test-ci test-ci: ## Run tests in the CI - $(TEST) --cov --cov-report=lcov + $(TEST) --cov --cov-report=xml:coverage.xml .PHONY: test test: ## Run tests locally