Skip to content

Commit

Permalink
Upgrade docker testkit dependencies
Browse files Browse the repository at this point in the history
This commits tests updating the docker testkit version
  • Loading branch information
EzequielPostan committed Jun 26, 2024
1 parent 2455eb3 commit e4c8f2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lazy val versions = new {
val circeOptics = "0.14.1"
val diffx = "0.7.0"
val dockerClient = "8.16.0"
val dockerTestkit = "0.9.9"
val dockerTestkit = "0.11.0-beta1"
val doobie = "1.0.0-RC2"
val enumeratum = "1.7.0"
val enumeratumDoobie = "1.7.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,12 @@ object DockerPostgresService extends DockerKit {
container: DockerContainerState
)(implicit
dockerExecutor: DockerCommandExecutor,
ec: ExecutionContext
ec: ExecutionContext,
timeout: Duration
): Future[Boolean] = {

container
.getPorts()(dockerExecutor, ec)
.getPorts()(dockerExecutor, ec, timeout)
.map { _ =>
try {
Class.forName("org.postgresql.Driver")
Expand Down

0 comments on commit e4c8f2b

Please sign in to comment.