File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -219,12 +219,23 @@ tasks:
219
219
test-legacy :
220
220
desc : Run tests for the `legacy` package
221
221
cmds :
222
- - go test {{ default "-v -failfast" .GOFLAGS }} -coverprofile=coverage_legacy.txt ./legacy/...
222
+ - |
223
+ go test \
224
+ {{ default "-v -failfast" .GOFLAGS }} \
225
+ -coverprofile=coverage_legacy.txt \
226
+ ./legacy/... \
227
+ {{.TEST_LDFLAGS}}
223
228
224
229
test-unit-race :
225
230
desc : Run unit tests only with race condition detection
226
231
cmds :
227
- - go test -short -race {{ default "-v" .GOFLAGS }} -coverprofile=coverage_race_unit.txt {{ default .DEFAULT_GO_PACKAGES .TARGETS }}
232
+ - |
233
+ go test \
234
+ -short \
235
+ -race {{ default "-v" .GOFLAGS }} \
236
+ -coverprofile=coverage_race_unit.txt \
237
+ {{ default .DEFAULT_GO_PACKAGES .TARGETS }} \
238
+ {{.TEST_LDFLAGS}}
228
239
229
240
check :
230
241
desc : Check fmt and lint, `legacy` will be skipped
Original file line number Diff line number Diff line change 1
1
module github.com/arduino/arduino-cli
2
2
3
- go 1.14
3
+ go 1.16
4
4
5
5
require (
6
6
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c
Original file line number Diff line number Diff line change @@ -70,7 +70,6 @@ github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 h1:C6sOwknxwWfLBE
70
70
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 /go.mod h1:c7sGIpDbBo0JZZ1tKyC1p5smWf8QcUjK4bFtZjHAecg =
71
71
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 h1:R8jFW6G/bjoXjWPFrEfw9G5YQDlYhwV4AC+Eonu6wmk =
72
72
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 /go.mod h1:BEUDl7FG1cc76sM0J0x8dqr6RhiL4uqvk6oFkwuNyuM =
73
- github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ =
74
73
github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 /go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc =
75
74
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I =
76
75
github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
You can’t perform that action at this time.
0 commit comments