From d78ba0ab77380452210dd1bb47f17c9b2793112f Mon Sep 17 00:00:00 2001 From: Bill Wallis Date: Wed, 3 Jun 2026 08:25:03 +0100 Subject: [PATCH] chore: add additional coverage exclusions --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2bc2520..5e60005 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,6 +82,10 @@ run.branch = true run.plugins = ["covdefaults"] # https://youtu.be/70T6OxKwxm0 report.fail_under = 80 report.show_missing = true +report.exclude_lines = [ + "@pytest.mark.skip", + "@pytest.mark.xfail", +] [tool.ruff]