test(board-coverage): accept the 6 new STM32 variant boards as uncovered

The boards added in 6813891 (F103CB / F401 pill variants, F4 Discovery,
Olimex H405, Netduino 2/+2) run on the libqemu-arm backend with no
in-browser canvas example, like the existing Blue/Black Pill. Add them to
ACCEPTED_UNCOVERED so the coverage matrix passes.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
David Montero 2026-05-31 08:37:58 +02:00
parent db6537681a
commit e1656d063e
1 changed files with 9 additions and 0 deletions

View File

@ -82,6 +82,15 @@ const ACCEPTED_UNCOVERED: ReadonlySet<BoardKind> = new Set([
// not shipped to the free tier, so these are accepted as uncovered.
'stm32-bluepill',
'stm32-blackpill',
// Additional STM32 variants (pin-compatible Pills + Discovery / Olimex /
// Netduino dev boards) — same libqemu-arm backend, no in-browser canvas
// example shipped.
'stm32-bluepill-f103cb',
'stm32-blackpill-f401',
'stm32-f4-discovery',
'stm32-olimex-h405',
'stm32-netduino-plus2',
'stm32-netduino2',
]);
interface Coverage {