Skip to content

Commit dc850b9

Browse files
committed
disable explicit nulls for scalatest
1 parent a3d1ba4 commit dc850b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ object projects:
292292
// 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.
293293
// dotty.tools.dotc.core.MissingType:
294294
dependencies = List(scalaXml),
295-
testOnlyDependencies = () => List(scalatestplusJunit, scalatestplusTestNG)
295+
testOnlyDependencies = () => List(scalatestplusJunit, scalatestplusTestNG),
296+
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Yexplicit-nulls").filter(_ != "-Yflexible-types"),
296297
)
297298

298299
lazy val scalatestplusScalacheck = SbtCommunityProject(

0 commit comments

Comments
 (0)