Skip to content

Commit 1f97c77

Browse files
Add println in TestScripts to prevent CI timeout
1 parent ca6563a commit 1f97c77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/test/TestScripts.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ class TestScripts {
1818
private def executeScript(script: String): (Int, String) = {
1919
val sb = new StringBuilder
2020
val ret = Process(script) ! ProcessLogger(sb append _)
21-
(ret, sb.toString)
21+
val output = sb.toString
22+
println(output) // For CI, otherwise "terminal inactive for 5m0s, build cancelled"
23+
(ret, output)
2224
}
2325

2426
private def delete(path: String) = {

0 commit comments

Comments
 (0)