Skip to content

Commit 4743fac

Browse files
author
Hariharan Ramanathan
committed
Moved ElasticActorTest to integration test
1 parent 045d075 commit 4743fac

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

build.sbt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ libraryDependencies += "com.typesafe.akka" %% "akka-stream" % "2.5.12"
1414
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1"
1515
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
1616
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
17-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
17+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "it,test"
1818
libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.11.1"
1919

2020
val elastic4sVersion = "6.3.0"
@@ -32,6 +32,11 @@ libraryDependencies ++= Seq(
3232

3333

3434
lazy val webapi = (project in file(".")).
35+
//https://www.scala-sbt.org/1.x/docs/Testing.html
36+
configs(IntegrationTest).
37+
settings(
38+
Defaults.itSettings,
39+
).
3540
enablePlugins(JavaAppPackaging).
3641
enablePlugins(DockerPlugin).
3742
enablePlugins(ScalastylePlugin).

0 commit comments

Comments
 (0)