-
Notifications
You must be signed in to change notification settings - Fork 49
/
bb.edn
50 lines (48 loc) · 2.57 KB
/
bb.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{:bbin/bin {zprint {:main-opts ["-m" "zprint.main"]}},
:tasks {test:bb
{:extra-deps
{cljc.java-time/cljc.java-time {:mvn/version "0.1.11"},
com.github.seancorfield/expectations {:mvn/version "2.0.143"},
io.github.cognitect-labs/test-runner {:git/sha "b3fd0d2",
:git/tag "v0.5.0"},
org.clojure/tools.namespace
{:git/sha "3625153ee66dfcec2ba600851b5b2cbdab8fae6c",
:git/url "https://github.com/babashka/tools.namespace"}},
:extra-paths ["src" "test"],
:requires ([cognitect.test-runner :as tr]),
:task (apply tr/-main
"-d"
"test" "-n"
"zprint.comment-test" "-n"
"zprint.config-test" "-n"
"zprint.core-test" "-n"
"zprint.finish-test" "-n"
"zprint.guide-test" "-n"
"zprint.main-test" "-n"
"zprint.range-test" "-n"
"zprint.rewrite-test" "-n"
"zprint.spec-test" "-n"
"zprint.zprint-test" "-n"
"zprint.zutil-test" *command-line-args*)},
testconfig:bb
{:extra-deps
{cljc.java-time/cljc.java-time {:mvn/version "0.1.11"},
com.github.seancorfield/expectations {:mvn/version "2.0.143"},
io.github.cognitect-labs/test-runner {:git/sha "b3fd0d2",
:git/tag "v0.5.0"},
; pjstadig/humane-test-output {:mvn/version "0.11.0"
; :exclusions [org.clojure/tools.namespace]},
; zprint/zprint {:mvn/version "1.2.8"},
lambdaisland/ansi {:mvn/version "0.2.37"},
org.clojure/tools.namespace
{:git/sha "3625153ee66dfcec2ba600851b5b2cbdab8fae6c",
:git/url "https://github.com/babashka/tools.namespace"}},
:extra-paths ["src" "test-config"],
:requires ([cognitect.test-runner :as tr]),
:task (tr/-main "-d" "test-config" "-n" "zprint.test-config")},
zprint:mvn {:extra-deps {zprint/zprint {:mvn/version "1.2.7"}},
:requires ([zprint.main]),
:task (apply zprint.main/-main *command-line-args*)},
zprint:src {:extra-paths ["src"],
:requires ([zprint.main]),
:task (apply zprint.main/-main *command-line-args*)}}}