-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathdeps.edn
More file actions
14 lines (14 loc) · 827 Bytes
/
deps.edn
File metadata and controls
14 lines (14 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.0" :git/sha "48c3c67"}}
:exec-fn cognitect.test-runner.api/test}
:coverage {:extra-paths ["test"]
:extra-deps {cloverage/cloverage {:mvn/version "1.2.4"}}
:main-opts ["--main" "cloverage.coverage"
"--test-ns-path" "test"]
:exec-fn cloverage.coverage/run-project
:exec-args {:src-ns-path ["src"]
:test-ns-path ["test"]
:codecov? true}}}}