Fork me on GitHub
#cloverage
<
2020-10-11
>
Eamonn Sullivan14:10:10

Hi all. I have a real newbie question. I have the following to add a cloverage alias to my project, using deps.edn.

:cloverage
  {:extra-paths ["test"]
   :extra-deps {cloverage/cloverage {:mvn/version "RELEASE"}}
   :main-opts ["-m" "cloverage.coverage"
               "-p" "src"
               "-s" "test"
               "--fail-threshold" "90"]}
The README for cloverage say I should be can provide a map of options somewhere in my applications. So using  `:fail-threshold` instead of the args that I'm using here. How would I do that, exactly? Can someone point me to an example?