Fork me on GitHub
#kaocha
<
2019-10-16
>
Ian Fernandez17:10:33

hey guys, kaocha-cloverage is not working with me

Ian Fernandez17:10:42

ERROR: Couldn't load plugin kaocha.plugin/cloverage

Ian Fernandez17:10:49

anyone knows why?

Ian Fernandez17:10:42

I have both dependencies, kaocha and kaocha-cloverage on mine project.clj

Ian Fernandez17:10:48

and I have the script

lein kaocha "$@"

Ian Fernandez17:10:27

and I have the tests.edn like this:

#kaocha/v1
{:tests [{:id          :unit
          :test-paths  ["test"]
          :ns-patterns [".*"]}]
 :plugins [kaocha.plugin/cloverage]
 :cloverage/opts
 {:ns-exclude-regex [],
  :text? false,
  :lcov? false,
  :high-watermark 80,
  :fail-threshold 0,
  :output "target/coverage",
  :low-watermark 50,
  :ns-regex [],
  :summary? true,
  :coveralls? false,
  :emma-xml? false,
  :html? true,
  :nop? false,
  :codecov? false}}