test(board-coverage): accept STM32 Blue/Black Pill as uncovered

stm32-bluepill and stm32-blackpill are Pro features emulated on the backend
via the licensed libqemu-arm QEMU lib (no in-browser canvas engine, same as
the Raspberry Pi boards), and their gallery examples are intentionally not
shipped to the free tier. Add them to ACCEPTED_UNCOVERED so the board-kind
coverage matrix passes — this was missed when the boards were introduced.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
David Montero 2026-05-31 02:46:30 +02:00
parent ca8dcedcc7
commit 62e6f76147
1 changed files with 7 additions and 0 deletions

View File

@ -75,6 +75,13 @@ const ACCEPTED_UNCOVERED: ReadonlySet<BoardKind> = new Set([
// showcases its limited (5 GPIO) form factor. Add one when
// someone proposes a use case.
'attiny85',
// STM32 (Blue Pill / Black Pill) — Pro feature emulated on the backend
// via the licensed libqemu-arm QEMU lib (no in-browser canvas engine,
// same as the Raspberry Pis above). Gallery examples are intentionally
// not shipped to the free tier, so these are accepted as uncovered.
'stm32-bluepill',
'stm32-blackpill',
]);
interface Coverage {