-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathworkspace.edn
32 lines (28 loc) · 1.39 KB
/
workspace.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
{:top-namespace "polylith-kaocha"
:interface-ns "interface"
:default-profile-name "default"
:compact-views #{}
:vcs {:name "git"
:auto-add false}
:tag-patterns {:stable "stable-*"
:release "v[0-9]*"}
:test {:create-test-runner [#_:default
polylith-kaocha.test-runner/create
#_polylith-kaocha.reload-runner/create]}
:projects {"development"
{:alias "dev"}
"example"
{:alias "ex"
:test {;; must be available on the project's classpath
:polylith-kaocha/config-resource "polylith-kaocha/example/tests.edn"
:polylith-kaocha.kaocha-wrapper/post-load-config polylith-kaocha.example.hooks/post-load-config
:polylith-kaocha.kaocha-wrapper/post-enhance-config polylith-kaocha.example.hooks/post-enhance-config
:polylith-kaocha/tests-present? polylith-kaocha.example.hooks/tests-present?
:polylith-kaocha/run-tests polylith-kaocha.example.hooks/run-tests
;; must be available on the poly tool's classpath
:polylith-kaocha/runner-opts->kaocha-poly-opts polylith-kaocha.hooks/runner-opts->kaocha-poly-opts}}
"kaocha-wrapper"
{:alias "kw"
:necessary ["kaocha-wrapper"]}
"test-runner"
{:alias "tr"}}}