Skip to content

Commit

Permalink
chore: search-provision module to start Redis for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jachro committed Jan 22, 2024
1 parent 4d77ea9 commit b112ed4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ lazy val searchProvision = project
.withId("search-provision")
.settings(commonSettings)
.settings(
name := "search-provision"
name := "search-provision",
Test / testOptions += Tests.Setup(RedisServer.start),
Test / testOptions += Tests.Cleanup(RedisServer.stop)
)
.dependsOn(
commons % "compile->compile;test->test",
Expand Down

0 comments on commit b112ed4

Please sign in to comment.