Skip to content

Commit

Permalink
disable explicit nulls for scalatest
Browse files Browse the repository at this point in the history
  • Loading branch information
olhotak committed Jul 31, 2023
1 parent a3d1ba4 commit dc850b9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ object projects:
// 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.
// dotty.tools.dotc.core.MissingType:
dependencies = List(scalaXml),
testOnlyDependencies = () => List(scalatestplusJunit, scalatestplusTestNG)
testOnlyDependencies = () => List(scalatestplusJunit, scalatestplusTestNG),
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Yexplicit-nulls").filter(_ != "-Yflexible-types"),
)

lazy val scalatestplusScalacheck = SbtCommunityProject(
Expand Down

0 comments on commit dc850b9

Please sign in to comment.