@@ -129,6 +129,9 @@ jobs:
129
129
- checkout
130
130
- attach_workspace :
131
131
at : .
132
+ - run :
133
+ name : Remove test coverage files
134
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
132
135
- run :
133
136
name : Run Alpine binary -f (dry run)
134
137
command : |
@@ -166,6 +169,9 @@ jobs:
166
169
- run :
167
170
name : Start Squid
168
171
command : squid
172
+ - run :
173
+ name : Remove test coverage files
174
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
169
175
- run :
170
176
name : Run Alpine binary auto-detect (dry run)
171
177
command : |
@@ -198,6 +204,9 @@ jobs:
198
204
- run :
199
205
name : Remove .git directory
200
206
command : rm -rf .git
207
+ - run :
208
+ name : Remove test coverage files
209
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
201
210
- run :
202
211
name : Run Alpine binary -f (dry run)
203
212
command : |
@@ -230,6 +239,9 @@ jobs:
230
239
name : Confirm that linux uploader binary is static
231
240
command : |
232
241
(file out/codecov-linux | grep 'static') || exit ${?}
242
+ - run :
243
+ name : Remove test coverage files
244
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
233
245
- run :
234
246
name : Run Linux binary -f (dry run)
235
247
command : |
@@ -259,6 +271,9 @@ jobs:
259
271
- run :
260
272
name : Remove .git directory
261
273
command : rm -rf .git
274
+ - run :
275
+ name : Remove test coverage files
276
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
262
277
- run :
263
278
name : Run Linux binary (dry run)
264
279
command : |
@@ -289,6 +304,9 @@ jobs:
289
304
name : Confirm that aarch64 uploader binary is static
290
305
command : |
291
306
(file out/codecov-aarch64 | grep 'static') || exit ${?}
307
+ - run :
308
+ name : Remove test coverage files
309
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
292
310
- run :
293
311
name : Run aarch64 binary -f (dry run)
294
312
command : |
@@ -319,6 +337,9 @@ jobs:
319
337
- run :
320
338
name : Remove .git directory
321
339
command : rm -rf .git
340
+ - run :
341
+ name : Remove test coverage files
342
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
322
343
- run :
323
344
name : Run Linux binary (dry run)
324
345
command : |
@@ -340,6 +361,9 @@ jobs:
340
361
- checkout
341
362
- attach_workspace :
342
363
at : .
364
+ - run :
365
+ name : Remove test coverage files
366
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
343
367
- run :
344
368
name : Run MacOS binary -f (dry-run)
345
369
command : |
@@ -368,6 +392,9 @@ jobs:
368
392
command : rm -rf .git
369
393
- attach_workspace :
370
394
at : .
395
+ - run :
396
+ name : Remove test coverage files
397
+ command : rm -rf *.coverage.txt coverage-report-test.json test/fixtures || echo
371
398
- run :
372
399
name : Run MacOS binary (dry-run)
373
400
command : |
@@ -415,6 +442,12 @@ jobs:
415
442
- checkout
416
443
- attach_workspace :
417
444
at : .
445
+ - run :
446
+ name : Remove test coverage files
447
+ command : |
448
+ Remove-Item -Recurse -Force *.coverage.txt; echo "ok"
449
+ Remove-Item -Recurse -Force coverage-report-test.json; echo "ok"
450
+ Remove-Item -Recurse -Force test/fixtures; echo "ok"
418
451
- run :
419
452
name : Run Windows binary -f (dry-run)
420
453
command : |
@@ -447,6 +480,12 @@ jobs:
447
480
command : del -Recurse -Force .git
448
481
- attach_workspace :
449
482
at : .
483
+ - run :
484
+ name : Remove test coverage files
485
+ command : |
486
+ Remove-Item -Recurse -Force *.coverage.txt; echo "ok"
487
+ Remove-Item -Recurse -Force coverage-report-test.json; echo "ok"
488
+ Remove-Item -Recurse -Force test/fixtures; echo "ok"
450
489
- run :
451
490
name : Run Windows binary (dry-run)
452
491
command : |
0 commit comments