This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-01-10
Channels
- # aleph (1)
- # announcements (21)
- # babashka (3)
- # beginners (98)
- # calva (2)
- # circleci (3)
- # clara (58)
- # clj-kondo (123)
- # cljs-dev (1)
- # cljsrn (7)
- # clojure (162)
- # clojure-europe (2)
- # clojure-finland (7)
- # clojure-italy (5)
- # clojure-nl (6)
- # clojure-sanfrancisco (1)
- # clojure-spec (1)
- # clojure-survey (17)
- # clojure-uk (70)
- # clojuredesign-podcast (2)
- # clojurescript (46)
- # cloverage (5)
- # cursive (2)
- # data-science (22)
- # datascript (1)
- # datomic (60)
- # emacs (3)
- # figwheel-main (1)
- # fulcro (26)
- # graalvm (5)
- # jackdaw (3)
- # leiningen (8)
- # luminus (1)
- # off-topic (8)
- # other-lisps (2)
- # pedestal (27)
- # re-frame (17)
- # reagent (20)
- # reitit (3)
- # shadow-cljs (37)
- # spacemacs (23)
- # sql (69)
- # tools-deps (2)
- # utah-clojurians (9)
- # xtdb (3)
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.
./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: ()
Caused by: java.lang.RuntimeException: No namespaces selected for instrumentation using {:ns-regex (), :ns-exclude-regex ()}
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"]
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"]])