kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
defa 2020-11-13T06:15:04.076600Z

@jr0cket Thanks for the explanation. As @plexus suggested, I just moved the :main-opts so a separate alias...

:server_main    {:jvm-opts    ["-Dfile.encoding=UTF-8"]
                          :main-opts   ["-m" "acme.server"]}
so I can combine aliases as needed. Currently for kaocha :
clojure -J-Dconfig.file=./conf/server.edn \
        -A:shared:shared_test:server:server_test \
        -m kaocha.runner "$@"

plexus 2020-11-13T08:32:33.076900Z

start with bin/kaocha --help, you will see that there is no --ns-exclude-regex option, but there is a --cov-ns-exclude-regex

plexus 2020-11-13T08:33:06.077200Z

just pass it a string as you do now, if you want to pass more than one then specify the option more than once

2020-11-13T14:20:58.077400Z

thanks!