From ceda7aeb2d050c28e15b1f23953569d219f02d5e Mon Sep 17 00:00:00 2001 From: bvandekerkhof Date: Fri, 1 Nov 2024 11:17:26 +0100 Subject: [PATCH] Update pyproject.toml to exclude post processing from coverage Signed-off-by: bvandekerkhof --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f047ae6..0468a15 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ addopts = "--cov=pyelq --cov-fail-under=90 --ignore-glob=*plot*" testpaths = ["tests"] [tool.coverage.report] -omit = ["*plot*", "*/data_access/*", "*/plotting/*"] +omit = ["*plot*", "*/data_access/*", "*/plotting/*", "*/post_processing/*"] exclude_lines = [".*def.*plot.*", "from pyelq.plotting.plot import Plot"] [tool.coverage.run]