From f15e0d70390a9230c328ce88812d313fb0f6810a Mon Sep 17 00:00:00 2001 From: HitBlast Date: Mon, 12 Aug 2024 01:28:32 +0600 Subject: [PATCH] reverting back to txt-based coverage reports --- .gitignore | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2414305..c5a18dd 100644 --- a/.gitignore +++ b/.gitignore @@ -46,7 +46,7 @@ htmlcov/ .coverage.* .cache nosetests.xml -coverage.xml +coverage.* *.cover *.py,cover .hypothesis/ diff --git a/Makefile b/Makefile index 4ea3ca0..0dda49c 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ test: coverage: @coverage run -m pytest . - @coverage xml + @coverage report -m > coverage.txt install: @poetry install --sync --no-interaction