@@ -159,6 +159,8 @@ static public void beforeAll() throws Exception {
159
159
"Generic STM32F103Z series" ,// confirmed failing in arduino IDE 2020 05 30
160
160
161
161
"Arduino Nano ESP32" ,// requires recipe.hooks.core.prebuild and recipe.hooks.core.postbuild
162
+ "Snō" ,//fails in arduino ide 2024 11 22
163
+ "OpenXLR8 - Snō" ,//fails in arduino ide 2024 11 22
162
164
163
165
};
164
166
private static final String [] boardsToIgnoreOnWindows = {
@@ -307,7 +309,8 @@ public static Stream<Arguments> allBoards() throws Exception {
307
309
List <BoardDescription > boards = new ArrayList <>();
308
310
for (File curBoardFile : BoardsManager .getAllBoardsFiles ()) {
309
311
System .out .println ("Adding boards of " + curBoardFile .toString ());
310
- boards .addAll (BoardDescription .makeBoardDescriptors (curBoardFile ));
312
+ boards .addAll (BoardDescription .makeBoardDescriptors (curBoardFile ));
313
+
311
314
}
312
315
313
316
HashSet <String > boardsToIgnoreList = new HashSet <>(Arrays .asList (boardsToIgnoreOnAllOses ));
@@ -356,8 +359,8 @@ public static void installAdditionalBoards() throws Exception {
356
359
toAddList .removeAll (Arrays .asList (packageUrlsToIgnoreOnMac ));
357
360
}
358
361
BoardsManager .addPackageURLs (toAddList );
359
-
360
-
362
+
363
+
361
364
if (!skipPlatformInstallation ) {
362
365
BoardsManager .installAllLatestPlatforms ();
363
366
// PackageManager.installsubsetOfLatestPlatforms(0,5);
0 commit comments