Skip to content

Commit 39b0ec7

Browse files
author
jan
committed
Remove 2 boards that also fail in arduino IDE
1 parent 8e991f3 commit 39b0ec7

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

io.sloeber.tests/src/io/sloeber/core/CreateAndCompileDefaultInoOnAllBoardsTest.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ static public void beforeAll() throws Exception {
159159
"Generic STM32F103Z series",// confirmed failing in arduino IDE 2020 05 30
160160

161161
"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
162164

163165
};
164166
private static final String[] boardsToIgnoreOnWindows = {
@@ -307,7 +309,8 @@ public static Stream<Arguments> allBoards() throws Exception {
307309
List<BoardDescription> boards = new ArrayList<>();
308310
for (File curBoardFile : BoardsManager.getAllBoardsFiles()) {
309311
System.out.println("Adding boards of " + curBoardFile.toString());
310-
boards.addAll(BoardDescription.makeBoardDescriptors(curBoardFile));
312+
boards.addAll(BoardDescription.makeBoardDescriptors(curBoardFile));
313+
311314
}
312315

313316
HashSet<String> boardsToIgnoreList = new HashSet<>(Arrays.asList(boardsToIgnoreOnAllOses));
@@ -356,8 +359,8 @@ public static void installAdditionalBoards() throws Exception {
356359
toAddList.removeAll(Arrays.asList(packageUrlsToIgnoreOnMac));
357360
}
358361
BoardsManager.addPackageURLs(toAddList);
359-
360-
362+
363+
361364
if (!skipPlatformInstallation) {
362365
BoardsManager.installAllLatestPlatforms();
363366
// PackageManager.installsubsetOfLatestPlatforms(0,5);

0 commit comments

Comments
 (0)