-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tests.edn
44 lines (44 loc) · 3.19 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/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? true
:lcov? true
:high-watermark 80
:fail-threshold 0
:output "target/coverage"
:low-watermark 50
:summary? true
:coveralls? false
:emma-xml? false
:html? true
:nop? false
:codecov? true}
:kaocha.hooks/pre-report [ham-fisted.test-setup/defuse-zero-assertions]
:kaocha.plugin.preloads/ns-names [ham-fisted.test-setup]
:tests [{:id :unit
:plugins [:kaocha.plugin/profiling
:kaocha.plugin/print-invocations
:kaocha.plugin/junit-xml
:kaocha.plugin/hooks
:preloads]
:kaocha/source-paths ["src"]
:kaocha/test-paths ["test"]
:ns-patterns [".*-test"]}
{:id :coverage
:plugins [:kaocha.plugin/profiling
:kaocha.plugin/print-invocations
:kaocha.plugin/junit-xml
:kaocha.plugin/cloverage
:kaocha.plugin/hooks
:preloads]
:kaocha/source-paths ["src"]
:kaocha/test-paths ["test"]
:ns-patterns [".*-test"]}]}