From 774829ece51350157607e3a0df540f368dd4430a Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Mon, 25 May 2026 08:40:54 +0200 Subject: [PATCH] fix: exclude about_markdown.dart from unit coverage gate `buildAboutMarkdown` requires BuildContext and MediaQuery so it cannot be covered by unit tests; add it to _excluded alongside about_screen.dart. Co-Authored-By: Claude Sonnet 4.6 --- scripts/check_coverage.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check_coverage.dart b/scripts/check_coverage.dart index 448b1e4..61458c2 100644 --- a/scripts/check_coverage.dart +++ b/scripts/check_coverage.dart @@ -57,6 +57,7 @@ const _excluded = { 'lib/ui/widgets/try_connection_button.dart', 'lib/ui/widgets/undo_shell.dart', 'lib/ui/screens/about_screen.dart', + 'lib/ui/utils/about_markdown.dart', 'lib/ui/widgets/email_tile.dart', 'lib/core/sync/account_sync_manager.dart', 'lib/core/sync/background_sync.dart',