From 8f377be9e33ac377cd50d413c38a991e1750f6fa Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Mon, 18 Mar 2024 17:41:02 +0000 Subject: [PATCH] Analyse code coverage in tests By analysing the code coverage in the test files, we can make sure that we do not accidentially remove a test and that all test code actually is used --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index de95111..54e7050 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ deps = coverage hypothesis commands = - coverage run --source=src/icalendar --omit=*/tests/* --module pytest [] + coverage run --source=src/icalendar --omit=*/tests/hypothesis/* --omit=*/tests/fuzzed/* --module pytest [] coverage report coverage html