diff --git a/deps.edn b/deps.edn index 9a3dd12..13c4a86 100644 --- a/deps.edn +++ b/deps.edn @@ -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"} diff --git a/run-tests.clj b/run-tests.clj index 595aeaa..36037f8 100755 --- a/run-tests.clj +++ b/run-tests.clj @@ -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))))