Skip to content

Commit

Permalink
Disable ticker in unit tests (com-lihaoyi#3572)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
lihaoyi committed Sep 18, 2024
1 parent 956c8f8 commit b5e04d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testkit/src/mill/testkit/UnitTester.scala
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class UnitTester(

object logger extends mill.util.PrintLogger(
colored = true,
enableTicker = true,
enableTicker = false,
mill.util.Colors.Default.info,
mill.util.Colors.Default.error,
new SystemStreams(out = outStream, err = errStream, in = inStream),
Expand Down

0 comments on commit b5e04d6

Please sign in to comment.