cloverage

https://github.com/lshift/cloverage/issues/103
Balaji Sivaramgari 2020-01-10T10:45:19.002200Z

Hi There, Hope you are doing well... Here I have a requirement for scanning clojure projects using leiningen and I am getting the below error while running "lein cloverage". Any suggestions would be highly appreciated.

Balaji Sivaramgari 2020-01-10T10:45:21.002400Z

./lein do cloverage WARNING: reader-conditional already refers to: #'clojure.core/reader-conditional in namespace: clojure.tools.reader.impl.utils, being replaced by: #'clojure.tools.reader.impl.utils/reader-conditional WARNING: tagged-literal already refers to: #'clojure.core/tagged-literal in namespace: clojure.tools.reader.impl.utils, being replaced by: #'clojure.tools.reader.impl.utils/tagged-literal Loading namespaces: () Test namespaces: ()

Balaji Sivaramgari 2020-01-10T10:45:26.002600Z

Caused by: java.lang.RuntimeException: No namespaces selected for instrumentation using {:ns-regex (), :ns-exclude-regex ()}

2020-01-10T10:52:56.003100Z

This is for a Leiningen application project that uses Clojure 1.9.0, and has this in the :plugins section of the project.clj file: [lein-cloverage "1.0.10"]

Balaji Sivaramgari 2020-01-10T10:55:20.003400Z

this is the project.clj file (defproject XXXXXX/XXXXX"1.0.188" :description "Data Model Runtime" :url "https://github.com/XXXXXXXX/XXXXXXXX" :plugins [[lein-sub "0.3.0"] [lein-tar "3.3.0"] [lein-set-version "0.4.1"] [lein-ancient "0.6.10"] [lein-cljfmt "0.5.6"] [lein-cloverage "1.0.10"] [jonase/eastwood "0.3.5"] [lein-kibit "0.1.6"] [lein-nvd "1.0.0"] [test2junit "1.4.2"]] :sub ["core" "client" "service"] :dependencies [[org.clojure/clojure "1.9.0"]])