Skip to content

Commit dc2b873

Browse files
committed
[WIP] try disabling -Ycheck-init on scalatest/scalacheck
1 parent c0616ab commit dc2b873

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,14 +235,16 @@ object projects:
235235
project = "scalacheck",
236236
sbtTestCommand = "jvm/test;js/test",
237237
sbtPublishCommand = "jvm/publishLocal;js/publishLocal",
238-
sbtDocCommand = forceDoc("jvm")
238+
sbtDocCommand = forceDoc("jvm"),
239+
scalacOptions = Nil // disable -Ycheck-init
239240
)
240241

241242
lazy val scalatest = SbtCommunityProject(
242243
project = "scalatest",
243244
sbtTestCommand = "scalacticDotty/clean;scalacticTestDotty/test; scalatestTestDotty/test",
244245
sbtPublishCommand = "scalacticDotty/publishLocal; scalatestDotty/publishLocal",
245-
sbtDocCommand = ";scalacticDotty/doc" // fails with missing type ;scalatestDotty/doc"
246+
sbtDocCommand = ";scalacticDotty/doc", // fails with missing type ;scalatestDotty/doc"
247+
scalacOptions = Nil // disable -Ycheck-init
246248
// cannot take signature of (test: org.scalatest.concurrent.ConductorFixture#OneArgTest):
247249
// org.scalatest.Outcome
248250
// Problem parsing scalatest.dotty/target/scala-3.0.0-M2/src_managed/main/org/scalatest/concurrent/ConductorFixture.scala:[602..624..3843], documentation may not be generated.

0 commit comments

Comments
 (0)