forked from nytimes/vase.elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.edn
32 lines (29 loc) · 1.31 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
{:kaocha/plugins [:kaocha.plugin/randomize
:kaocha.plugin/filter
:kaocha.plugin/capture-output
:kaocha.plugin/cloverage]
:kaocha/reporter [kaocha.report/documentation]
:kaocha/fail-fast? false,
:kaocha/color? true,
:kaocha.plugin.capture-output/capture-output? true
:kaocha.plugin.randomize/randomize? true,
:kaocha/tests [{:kaocha.testable/type :kaocha.type/clojure.test,
:kaocha.testable/id :test,
:kaocha/ns-patterns ["-test$"],
:kaocha/source-paths ["src"],
:kaocha/test-paths ["test"],
:kaocha.filter/skip-meta [:kaocha/skip]}]
:cloverage/opts {:ns-exclude-regex [],
:text? false,
:lcov? false,
:high-watermark 80,
:fail-threshold 0,
:output "target/coverage",
:low-watermark 50,
:ns-regex ["com.nytimes.*"],
:summary? true,
:coveralls? true,
:emma-xml? false,
:html? true,
:nop? false,
:codecov? false}}