From c5fac40eb498f23b8e1e80729c003525967134d9 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 20 Mar 2023 04:00:40 +0300 Subject: [PATCH] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a70ff8f..46bc422 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ install: cd src/ && pip install -e . tests: install - coverage run --rcfile=.coveragerc -m pytest -s tests --disable-warnings && \ + coverage run --rcfile=.coveragerc -m pytest --verbose --showlocals --pastebin=all tests --disable-warnings && \ coverage report --precision=3 --sort=cover --skip-empty --show-missing && \ coverage html --precision=3 --skip-empty -d coverage/html/ && \ coverage xml -o coverage/coverage.xml