File tree 4 files changed +24
-3
lines changed
4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 40
40
restore-keys : cljdeps-
41
41
42
42
- name : Run tests
43
- run : echo "TODO"
43
+ run : make test
44
44
45
45
- name : Build uberjar
46
46
run : |
Original file line number Diff line number Diff line change 1
1
build-jar :
2
2
clj -T:build uberjar
3
3
4
+ test :
5
+ clj -M:test -m kaocha.runner
4
6
5
7
PATH_TO_JAR := $(project_dir ) /$(jar_path )
6
8
Original file line number Diff line number Diff line change 7
7
8
8
:aliases
9
9
{:dev {:extra-paths [" dev" ]}
10
+
10
11
:test {:extra-paths [" tests" ]
11
- :deps {com.health-samurai/matcho {:mvn/version " 0.3.11" }}}
12
+ :exec-fn kaocha.runner/exec-fn
13
+ :extra-deps {com.health-samurai/matcho {:mvn/version " 0.3.11" }
14
+ lambdaisland/kaocha {:mvn/version " 1.91.1392" }}}
12
15
13
- :build {:deps {io.github.clojure/tools.build {:mvn/version " 0.10.4 " }}
16
+ :build {:deps {io.github.clojure/tools.build {:mvn/version " 0.10.5 " }}
14
17
:ns-default build}}}
Original file line number Diff line number Diff line change
1
+ {:kaocha/tests [{:kaocha.testable/type :kaocha.type/clojure.test
2
+ :kaocha.testable/id :unit
3
+ :kaocha/ns-patterns [" -test$" ]
4
+ :kaocha/source-paths [" src" ]
5
+ :kaocha/test-paths [" tests" ]}]
6
+ :kaocha/fail-fast? false
7
+ :kaocha/color? true
8
+ :kaocha/reporter [#_kaocha.report/dots
9
+ kaocha.report/documentation
10
+ #_kaocha.report.progress/report]
11
+ :kaocha/plugins [:kaocha.plugin/randomize
12
+ :kaocha.plugin/filter
13
+ :kaocha.plugin/profiling ]
14
+ :kaocha.plugin.randomize/randomize? true
15
+ :kaocha.plugin.profiling/count 3
16
+ :kaocha.plugin.profiling/profiling? true }
You can’t perform that action at this time.
0 commit comments