Skip to content

Commit 60f4764

Browse files
author
jantje
committed
new test script to run when releasing
more info in sloeber wiki
1 parent 8ee4ff9 commit 60f4764

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package io.sloeber.core;
2+
3+
import org.junit.BeforeClass;
4+
import org.junit.runner.RunWith;
5+
import org.junit.runners.Suite;
6+
import org.junit.runners.Suite.SuiteClasses;
7+
8+
import io.sloeber.core.api.SerialManager;
9+
10+
@RunWith(Suite.class)
11+
@SuiteClasses({
12+
CreateAndCompileDefaultInoOnAllBoardsTest.class,
13+
NightlyBoardPatronTest.class,
14+
RegressionTest.class,
15+
RegressionTestFailingOnTravis.class,
16+
CreateAndCompileArduinoIDEExamplesOnAVRHardwareTest.class,
17+
CreateAndCompileArduinoIDEExamplesOnTeensyTest.class,
18+
CreateAndCompileExamplesTest.class,
19+
CreateAndCompileJantjesBoardsTest.class,
20+
CreateAndCompileLibraryExamplesTest.class
21+
})
22+
public class releaseTesting_takes_very_long {
23+
@BeforeClass
24+
public static void setUp() {
25+
SerialManager.stopNetworkScanning();
26+
Shared.deleteProjects=true;
27+
}
28+
}

0 commit comments

Comments
 (0)