Skip to content

Commit b5e04d6

Browse files
authored
Disable ticker in unit tests (#3572)
Currently the github actions UI for the unit test jobs take forever (~minutes) to load due to volume of logs. Ideally github actions should be able to deal with it, but until then we can reduce the quantity of logs
1 parent 956c8f8 commit b5e04d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testkit/src/mill/testkit/UnitTester.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class UnitTester(
6868

6969
object logger extends mill.util.PrintLogger(
7070
colored = true,
71-
enableTicker = true,
71+
enableTicker = false,
7272
mill.util.Colors.Default.info,
7373
mill.util.Colors.Default.error,
7474
new SystemStreams(out = outStream, err = errStream, in = inStream),

0 commit comments

Comments
 (0)