File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
{{cookiecutter.repo_name}} Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2828 <https://github.com/ionelmc/cookiecutter-pylibrary/pull/64> `_.
2929* Improved code style in a bunch of files. Contributed by Laurent Laporte in `#62
3030 <https://github.com/ionelmc/cookiecutter-pylibrary/pull/62> `_.
31-
31+ * Fixed coverage combining in coveralls/codecov tox envs. Now append mode is used, to avoid discarding coverage data.
32+
3233
3334v1.11 (2016-01-05)
3435------------------
Original file line number Diff line number Diff line change 8787skip_install = true
8888usedevelop = false
8989commands =
90- coverage combine
90+ coverage combine --append
9191 coverage report
9292 coveralls{%- if cookiecutter.c_extension_support|lower == " yes" %} --merge =extension-coveralls.json{% endif %} []
9393
9797skip_install = true
9898usedevelop = false
9999commands =
100- coverage combine
100+ coverage combine --append
101101 coverage report
102102 coverage xml --ignore-errors
103103 codecov []
@@ -117,7 +117,7 @@ deps = coverage
117117skip_install = true
118118usedevelop = false
119119commands =
120- coverage combine
120+ coverage combine --append
121121 coverage report
122122 coverage html
123123
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ deps =
123123 coveralls
124124skip_install = true
125125commands =
126- coverage combine
126+ coverage combine --append
127127 coverage report
128128 coveralls{%- if cookiecutter.c_extension_support|lower == " yes" %} --merge =extension-coveralls.json{% endif %} []
129129
@@ -132,7 +132,7 @@ deps =
132132 codecov
133133skip_install = true
134134commands =
135- coverage combine
135+ coverage combine --append
136136 coverage report
137137 coverage xml --ignore-errors
138138 codecov []
@@ -149,7 +149,7 @@ commands =
149149deps = coverage
150150skip_install = true
151151commands =
152- coverage combine
152+ coverage combine --append
153153 coverage report
154154 coverage html
155155
You can’t perform that action at this time.
0 commit comments