kaocha

Official support channel: https://clojureverse.org/c/projects/kaocha
practicalli-john 2020-11-17T04:07:13.080900Z

@glenjamin use #profile to determine when something runs on the CI

;; Use color output, unless in CI environment
:kaocha/color? #profile {:default true
                          :ci      false}

 ;; Run tests of file changes, unless running in CI server
 :kaocha/watch #profile {:default true :ci false}

2020-11-17T14:23:33.082600Z

is anyone using kaocha and reporting to teamcity?

2020-11-18T15:21:35.083700Z

ok problem solved, the code is not publicly available but it's quite simple tbf

2020-11-17T14:24:16.083300Z

we are using https://github.com/omartell/lein-teamcity-report so if I want to try to migrate to kaocha a few projects I'll just need to use something like that