From 67f3913ec14d871c3c555a3a1f4a6c5afc2d2c54 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sun, 15 Feb 2026 21:48:21 +0000 Subject: [PATCH 1/2] Enable coverage report.show_missing --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 95648ba09..e6f937a3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -346,6 +346,7 @@ report.exclude_also = [ ] report.fail_under = 100 +report.show_missing = true [tool.mypy] strict = true files = [ "." ] From 91693d89fa1222a210945d1de5f4584ce292e47a Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sun, 15 Feb 2026 22:06:40 +0000 Subject: [PATCH 2/2] Fix TOML section spacing for coverage setting --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e6f937a3a..e3b687a23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -345,8 +345,8 @@ report.exclude_also = [ "if TYPE_CHECKING:", ] report.fail_under = 100 - report.show_missing = true + [tool.mypy] strict = true files = [ "." ]