#47 - Upgraded Testcontainers version

This commit is contained in:
Tim Zöller 2020-12-15 21:40:47 +01:00
parent f7befdf86d
commit 461add59f7
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.testcontainers/testcontainers "1.15.0"]]
[org.testcontainers/testcontainers "1.15.1"]]
:aliases {"test" ["run" "-m" "kaocha.runner"]
"cljstyle" ["run" "-m" "cljstyle.main"]}
@ -22,7 +22,7 @@
[mvxcvi/cljstyle "0.13.0" :exclusions [org.clojure/clojure]]
[org.clojure/test.check "1.1.0"]
[org.clojure/tools.namespace "1.0.0"]
[org.testcontainers/postgresql "1.15.0-rc2"]]
[org.testcontainers/postgresql "1.15.1"]]
:source-paths ["dev-src"]}}
:target-path "target/%s")

View file

@ -56,7 +56,7 @@
healthy state of your container as your wait condition.
Example:
pr
```clojure
(wait {:wait-strategy :health :true} container)
```