File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
io.sloeber.core/src/io/sloeber/core/api
io.sloeber.tests/src/io/sloeber/core Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -89,4 +89,8 @@ public static String getLineEnding(int selectionIndex) {
89
89
public static String [] listNetworkPorts () {
90
90
return NetworkDiscovery .getList ();
91
91
}
92
+
93
+ public static void stopNetworkScanning () {
94
+ NetworkDiscovery .stop ();
95
+ }
92
96
}
Original file line number Diff line number Diff line change 22
22
import io .sloeber .core .api .CodeDescriptor ;
23
23
import io .sloeber .core .api .CompileOptions ;
24
24
import io .sloeber .core .api .ConfigurationDescriptor ;
25
+ import io .sloeber .core .api .SerialManager ;
25
26
26
27
@ SuppressWarnings ("nls" )
27
28
public class RegressionTest {
@@ -34,6 +35,7 @@ public class RegressionTest {
34
35
@ BeforeClass
35
36
public static void WaitForInstallerToFinish () {
36
37
Shared .waitForAllJobsToFinish ();
38
+ SerialManager .stopNetworkScanning ();
37
39
installAdditionalBoards ();
38
40
}
39
41
You can’t perform that action at this time.
0 commit comments