reduce a couple of gratuitous diffs
Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
parent
403d156331
commit
ed8ba5402a
2 changed files with 5 additions and 5 deletions
4
deps.edn
4
deps.edn
|
|
@ -18,11 +18,11 @@
|
||||||
|
|
||||||
;; running tests/checks of various kinds:
|
;; running tests/checks of various kinds:
|
||||||
:test {:extra-paths ["test"]
|
:test {:extra-paths ["test"]
|
||||||
:extra-deps {io.github.noahtheduke/lazytest
|
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
|
||||||
|
io.github.noahtheduke/lazytest
|
||||||
{:git/url "https://github.com/NoahTheDuke/lazytest/"
|
{:git/url "https://github.com/NoahTheDuke/lazytest/"
|
||||||
:git/sha "4e4a746bed3eb5642b67d63117aef60954fe424f"}
|
:git/sha "4e4a746bed3eb5642b67d63117aef60954fe424f"}
|
||||||
#_{:mvn/version "1.5.0"}
|
#_{:mvn/version "1.5.0"}
|
||||||
org.clojure/test.check {:mvn/version "1.1.1"}
|
|
||||||
;; connection pooling
|
;; connection pooling
|
||||||
com.zaxxer/HikariCP {:mvn/version "6.2.1"}
|
com.zaxxer/HikariCP {:mvn/version "6.2.1"}
|
||||||
com.mchange/c3p0 {:mvn/version "0.10.1"}
|
com.mchange/c3p0 {:mvn/version "0.10.1"}
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@
|
||||||
(defn- run-tests [env v]
|
(defn- run-tests [env v]
|
||||||
(when v (println "\nTesting Clojure" v))
|
(when v (println "\nTesting Clojure" v))
|
||||||
(let [{:keys [exit]}
|
(let [{:keys [exit]}
|
||||||
(p/shell {:extra-env env}
|
(p/shell {:extra-env env} "clojure" (str "-M"
|
||||||
"clojure"
|
(when v (str ":" v))
|
||||||
(str "-M" (when v (str ":" v)) ":test:runner")
|
":test:runner")
|
||||||
"--output" "dots")]
|
"--output" "dots")]
|
||||||
(when-not (zero? exit)
|
(when-not (zero? exit)
|
||||||
(System/exit exit))))
|
(System/exit exit))))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue