-
Notifications
You must be signed in to change notification settings - Fork 2
/
tests.edn
35 lines (31 loc) · 2.02 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
#kaocha/v1
{:tests [{:id :unit
:test-paths ["test"]
:ns-patterns [".*test$"]}
{:id :no-tc
:test-paths ["test"]
:ns-patterns [".*no-tc$"]}]
:kaocha/plugins [:lambdaschmiede.kaocha-tc/plugin
:kaocha.plugin/junit-xml
:kaocha.plugin/cloverage]
:reporter [kaocha.report/documentation]
:kaocha.plugin.junit-xml/target-file "target/junit.xml"
:lambdaschmiede.kaocha-tc/config [
{:id :postgres-1
:for {:type :all
:tests [:unit]}
:config {:image-name "postgres:12.1"
:exposed-ports [5432]
:env-vars {"POSTGRES_PASSWORD" "verysecret"}}}
{:id :postgres-2
:for {:type :each
:filter ["-test$"]}
:config {:image-name "postgres:12.1"
:exposed-ports [5432]
:env-vars {"POSTGRES_PASSWORD" "verysecret"}}}
{:id :postgres-3
:for {:type :ns
:filter ["test$"]}
:config {:image-name "postgres:12.1"
:exposed-ports [5432]
:env-vars {"POSTGRES_PASSWORD" "verysecret"}}}]}