Skip to content

Commit d049102

Browse files
authored
Merge pull request #11068 from griggt/cb-quiet-munit-logging
Reduce noise in community build logs
2 parents 5950f83 + f66b820 commit d049102

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,10 @@ final case class SbtCommunityProject(
156156
++ s"""set dependencyOverrides in ThisBuild ++= ${dependencyOverrides.mkString("Seq(", ", ", ")")}; """
157157
++ s"++$compilerVersion!; "
158158

159-
override val testCommand = s"$baseCommand$sbtTestCommand"
159+
override val testCommand =
160+
"""set testOptions in Global += Tests.Argument(TestFramework("munit.Framework"), "+l"); """
161+
++ s"$baseCommand$sbtTestCommand"
162+
160163
override val publishCommand = if sbtPublishCommand eq null then null else
161164
val disableDocCommand =
162165
if sbtDocCommand eq null then "" else "set every useScala3doc := false;"

0 commit comments

Comments
 (0)