From b5e04d6b8b93d185f61e34697aee33c0d92e595a Mon Sep 17 00:00:00 2001 From: Li Haoyi Date: Wed, 18 Sep 2024 11:18:49 +0800 Subject: [PATCH] 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 --- testkit/src/mill/testkit/UnitTester.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testkit/src/mill/testkit/UnitTester.scala b/testkit/src/mill/testkit/UnitTester.scala index 22f48de1f43..1d921c67477 100644 --- a/testkit/src/mill/testkit/UnitTester.scala +++ b/testkit/src/mill/testkit/UnitTester.scala @@ -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),