Skip to content

Commit

Permalink
Update scalatest to 3.2.7 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Apr 6, 2021
1 parent c1761dd commit b669ade
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Expand Up @@ -59,7 +59,7 @@ lazy val core =
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.9.2",
libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.9.1",
libraryDependencies += "com.lihaoyi" %% "ammonite-ops" % "2.3.8",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % "test",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % "test",
coverageMinimum := 94,
coverageFailOnMinimum := true,
buildInfoPackage := "blinky",
Expand Down Expand Up @@ -122,7 +122,7 @@ lazy val tests =
.settings(
libraryDependencies += "ch.epfl.scala" % "scalafix-testkit" %
scalafixTestkitV(scalaVersion.value) % Test cross CrossVersion.full,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test,
scalafixTestkitOutputSourceDirectories :=
sourceDirectories.in(output, Compile).value,
scalafixTestkitInputSourceDirectories :=
Expand Down
2 changes: 1 addition & 1 deletion ci-tests/examples/default/build.sbt
Expand Up @@ -3,5 +3,5 @@ lazy val example =
.in(file("."))
.settings(
scalaVersion := "2.12.11",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test
)
2 changes: 1 addition & 1 deletion ci-tests/examples/example5/build.sbt
@@ -1,2 +1,2 @@
scalaVersion := "2.12.11"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test
2 changes: 1 addition & 1 deletion ci-tests/examples/example6/build.sbt
Expand Up @@ -3,5 +3,5 @@ lazy val example =
.in(file("."))
.settings(
scalaVersion := "2.13.3",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % Test
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test
)
2 changes: 1 addition & 1 deletion ci-tests/examples/example7/build.sbt
Expand Up @@ -3,6 +3,6 @@ lazy val example =
.in(file("."))
.settings(
scalaVersion := "2.12.11",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.6" % Test,
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.7" % Test,
scalacOptions += (if (sys.env.contains("BLINKY")) "" else "-Xfatal-warnings")
)

0 comments on commit b669ade

Please sign in to comment.