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:
parent
ca8dcedcc7
commit
62e6f76147
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue