forked from oracle-samples/clara-rules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tests.edn
44 lines (44 loc) · 2.96 KB
/
tests.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
#kaocha/v1 {:capture-output? false
:kaocha/fail-fast? false
:plugins [:kaocha.plugin/profiling
:kaocha.plugin/gc-profiling
:kaocha.plugin/print-invocations
:kaocha.plugin/junit-xml
:kaocha.plugin/cloverage
:kaocha.plugin/hooks
:preloads]
:kaocha.plugin.junit-xml/target-file "target/junit.xml"
:kaocha.plugin.junit-xml/add-location-metadata? true
:cloverage/opts {:ns-exclude-regex []
:text? false
:lcov? false
:high-watermark 80
:fail-threshold 0
:output "target/coverage"
:low-watermark 50
:src-ns-path ["src/main/clojure"
"src/test/clojure"]
:ns-regex ["clara.coverage-ruleset"]
:summary? true
:coveralls? false
:emma-xml? false
:html? true
:nop? false
:codecov? true}
:kaocha.hooks/pre-report [clara.test-setup/defuse-zero-assertions]
:kaocha.plugin.preloads/ns-names [clara.test-setup]
:tests [{:id :unit
:kaocha/source-paths ["src/main/clojure"]
:kaocha/test-paths ["src/test/clojure"]
:ns-patterns [".*"]
:skip-meta [:generative :coverage]}
{:id :coverage
:kaocha/source-paths ["src/main/clojure"]
:kaocha/test-paths ["src/test/clojure"]
:ns-patterns [".*"]
:focus-meta [:coverage]}
{:id :generative
:kaocha/source-paths ["src/main/clojure"]
:kaocha/test-paths ["src/test/clojure"]
:ns-patterns [".*"]
:focus-meta [:generative]}]}