File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,7 @@ steps:
214
214
environment :
215
215
GOPROXY : off
216
216
TAGS : bindata sqlite sqlite_unlock_notify
217
+ RACE_ENABLED : true
217
218
GITHUB_READ_TOKEN :
218
219
from_secret : github_read_token
219
220
@@ -236,6 +237,7 @@ steps:
236
237
environment :
237
238
GOPROXY : off
238
239
TAGS : bindata gogit sqlite sqlite_unlock_notify
240
+ RACE_ENABLED : true
239
241
GITHUB_READ_TOKEN :
240
242
from_secret : github_read_token
241
243
@@ -246,6 +248,7 @@ steps:
246
248
environment :
247
249
GOPROXY : off
248
250
TAGS : bindata
251
+ RACE_ENABLED : true
249
252
TEST_LDAP : 1
250
253
USE_REPO_TEST_DIR : 1
251
254
TEST_INDEXER_CODE_ES_URL : " http://elastic:changeme@elasticsearch:9200"
@@ -259,6 +262,7 @@ steps:
259
262
environment :
260
263
GOPROXY : off
261
264
TAGS : bindata
265
+ RACE_ENABLED : true
262
266
TEST_LDAP : 1
263
267
USE_REPO_TEST_DIR : 1
264
268
depends_on :
@@ -271,6 +275,7 @@ steps:
271
275
environment :
272
276
GOPROXY : off
273
277
TAGS : bindata
278
+ RACE_ENABLED : true
274
279
TEST_LDAP : 1
275
280
USE_REPO_TEST_DIR : 1
276
281
depends_on :
@@ -366,6 +371,7 @@ steps:
366
371
environment :
367
372
GOPROXY : off
368
373
TAGS : bindata gogit sqlite sqlite_unlock_notify
374
+ RACE_ENABLED : true
369
375
TEST_TAGS : gogit sqlite sqlite_unlock_notify
370
376
USE_REPO_TEST_DIR : 1
371
377
depends_on :
@@ -378,6 +384,7 @@ steps:
378
384
environment :
379
385
GOPROXY : off
380
386
TAGS : bindata gogit
387
+ RACE_ENABLED : true
381
388
TEST_TAGS : gogit
382
389
TEST_LDAP : 1
383
390
USE_REPO_TEST_DIR : 1
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ test\#%:
385
385
386
386
.PHONY : coverage
387
387
coverage :
388
- GO111MODULE=on $(GO ) run -mod=vendor build/gocovmerge.go integration.coverage.out $( shell find . -type f -name " coverage.out") > coverage.all
388
+ GO111MODULE=on $(GO ) run -mod=vendor build/gocovmerge.go integration.coverage.out coverage.out > coverage.all
389
389
390
390
.PHONY : unit-test-coverage
391
391
unit-test-coverage :
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ func main() {
109
109
for _ , file := range flag .Args () {
110
110
profiles , err := cover .ParseProfiles (file )
111
111
if err != nil {
112
- log .Fatalf ("failed to parse profiles : %v" , err )
112
+ log .Fatalf ("failed to parse profile '%s' : %v" , file , err )
113
113
}
114
114
for _ , p := range profiles {
115
115
merged = addProfile (merged , p )
You can’t perform that action at this time.
0 commit comments