File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,8 @@ eastwood:
21
21
cljfmt :
22
22
lein with-profile +$(CLOJURE_VERSION ) ,+cljfmt cljfmt check
23
23
24
-
25
- # Cloverage can't handle some of the code in this project. For now we
26
- # must filter problematic namespaces (`-e`) and tests (`-t`) from
27
- # instrumentation. Note: this means for now coverage reporting isn't
28
- # exact. See issue #457 for details.
29
-
30
24
cloverage :
31
- lein with-profile +$(CLOJURE_VERSION ) ,+cloverage cloverage --codecov \
32
- -e " .*util.instrument" \
33
- -t " ^((?!debug-integration-test).)*$$ "
25
+ lein with-profile +$(CLOJURE_VERSION ) ,+cloverage cloverage
34
26
35
27
install : .source-deps
36
28
lein with-profile +$(CLOJURE_VERSION ) ,+plugin.mranderson/config install
Original file line number Diff line number Diff line change 114
114
:sysutils {:plugins [[lein-sysutils " 0.2.0" ]]}
115
115
116
116
:cloverage [:test
117
- {:plugins [[lein-cloverage " 1.0.13" ]]}]
117
+ {:plugins [[lein-cloverage " 1.0.13" ]]
118
+ :cloverage {:codecov? true
119
+ ; ; Cloverage can't handle some of the code
120
+ ; ; in this project; see issue #457
121
+ :ns-exclude-regex [#".*util.instrument" ]
122
+ :test-ns-regex [#"^((?!debug-integration-test).)*$$" ]}}]
118
123
119
124
:cljfmt [:test
120
125
{:plugins [[lein-cljfmt " 0.6.1" ]]
You can’t perform that action at this time.
0 commit comments