reduce a couple of gratuitous diffs

Signed-off-by: Sean Corfield <sean@corfield.org>
This commit is contained in:
Sean Corfield 2025-03-08 13:41:16 -08:00
parent 403d156331
commit ed8ba5402a
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -18,11 +18,11 @@
;; running tests/checks of various kinds:
: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/sha "4e4a746bed3eb5642b67d63117aef60954fe424f"}
#_{:mvn/version "1.5.0"}
org.clojure/test.check {:mvn/version "1.1.1"}
;; connection pooling
com.zaxxer/HikariCP {:mvn/version "6.2.1"}
com.mchange/c3p0 {:mvn/version "0.10.1"}

View file

@ -5,9 +5,9 @@
(defn- run-tests [env v]
(when v (println "\nTesting Clojure" v))
(let [{:keys [exit]}
(p/shell {:extra-env env}
"clojure"
(str "-M" (when v (str ":" v)) ":test:runner")
(p/shell {:extra-env env} "clojure" (str "-M"
(when v (str ":" v))
":test:runner")
"--output" "dots")]
(when-not (zero? exit)
(System/exit exit))))