We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef29ed7 commit 84917a3Copy full SHA for 84917a3
compiler/test/dotty/tools/vulpix/SummaryReport.java
@@ -8,12 +8,14 @@
8
import scala.Unit;
9
10
import dotty.tools.dotc.reporting.TestReporter;
11
+import dotty.Properties;
12
13
/** Note that while `ParallelTesting` runs in parallel, JUnit tests cannot with
14
* this class
15
*/
16
public class SummaryReport {
- public final static boolean isInteractive = !System.getenv().containsKey("DRONE");
17
+ public final static boolean isInteractive =
18
+ Properties.testsInteractive() && !Properties.runningDrone();
19
20
private static TestReporter rep = TestReporter.reporter(System.out, -1);
21
private static ArrayDeque<String> failedTests = new ArrayDeque<>();
0 commit comments