@@ -96,12 +96,17 @@ _get_codecov: &_get_codecov
96
96
command : |
97
97
pip install --no-cache-dir codecov
98
98
99
- _run_codecov : &_run_codecov
100
- name : Run codecov
99
+ _run_codecov_coverage : &_run_codecov_coverage
100
+ name : Run codecov (coverage)
101
101
environment : *test_environment
102
102
command : |
103
- codecov --file "$WORKDIR/tests/coverage*.xml" --root "$HOME/nipype" --flags unittests -e "$CIRCLE_JOB"
104
- codecov --file "$WORKDIR/tests/smoketest*.xml" --root "$HOME/nipype" --flags smoketests -e "$CIRCLE_JOB"
103
+ codecov --file $WORKDIR/tests/coverage*.xml --root "$HOME/nipype" --flags unittests -e "$CIRCLE_JOB"
104
+
105
+ _run_codecov_smoke : &_run_codecov_smoke
106
+ name : Run codecov (smoke tests)
107
+ environment : *test_environment
108
+ command : |
109
+ codecov --file $WORKDIR/tests/smoketest*.xml --root "$HOME/nipype" --flags smoketests -e "$CIRCLE_JOB"
105
110
106
111
107
112
version : 2
@@ -167,7 +172,7 @@ jobs:
167
172
no_output_timeout : 30m
168
173
environment : *test_environment
169
174
command : bash -ux /home/circleci/nipype/.circleci/test_py2_pytest.sh
170
- - run : *_run_codecov
175
+ - run : *_run_codecov_coverage
171
176
- store_artifacts : *store_artifacts_kwds
172
177
173
178
test_py3_fmri_fsl_spm :
@@ -205,7 +210,7 @@ jobs:
205
210
no_output_timeout : 40m
206
211
environment : *test_environment
207
212
command : bash -ux /home/circleci/nipype/.circleci/test_py3_fmri_spm_linear_4d.sh
208
- - run : *_run_codecov
213
+ - run : *_run_codecov_smoke
209
214
- store_artifacts : *store_artifacts_kwds
210
215
211
216
test_py3_fmri_spm_dartel_multiproc :
@@ -233,7 +238,7 @@ jobs:
233
238
no_output_timeout : 30m
234
239
environment : *test_environment
235
240
command : bash -ux /home/circleci/nipype/.circleci/test_py3_fmri_spm_dartel_multiproc_l2.sh
236
- - run : *_run_codecov
241
+ - run : *_run_codecov_smoke
237
242
- store_artifacts : *store_artifacts_kwds
238
243
239
244
test_fmri_spm_nested_multiproc :
@@ -262,7 +267,7 @@ jobs:
262
267
no_output_timeout : 30m
263
268
environment : *test_environment
264
269
command : bash -ux /home/circleci/nipype/.circleci/test_py2_fmri_spm_nested_multiproc_l2.sh
265
- - run : *_run_codecov
270
+ - run : *_run_codecov_smoke
266
271
- store_artifacts : *store_artifacts_kwds
267
272
- run :
268
273
name : Build docs (py36)
0 commit comments