From 088fc4d4638bc315d2845d0bbf59687d3e7eb420 Mon Sep 17 00:00:00 2001 From: omicron Date: Thu, 3 Sep 2026 02:55:20 +0200 Subject: [PATCH] Exclude abstract methods from coverage reports --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index f37fb2b..e7e0f3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ source = ["omicron"] [tool.coverage.report] show_missing = true +exclude_also = ["@(abc\\.)?abstractmethod"] [tool.setuptools.packages.find] where = ["."]