File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,14 @@ tasks:
44
44
desc : Run unit tests
45
45
dir : " {{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
46
46
cmds :
47
- - go test -v -short -run '{{default ".*" .GO_TEST_REGEX}}' {{default "-timeout 10m -coverpkg=./... -covermode=atomic" .GO_TEST_FLAGS}} -coverprofile=coverage_unit.txt {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
47
+ - |
48
+ go test \
49
+ -v \
50
+ -short \
51
+ -run '{{default ".*" .GO_TEST_REGEX}}' \
52
+ {{default "-timeout 10m -coverpkg=./... -covermode=atomic" .GO_TEST_FLAGS}} \
53
+ -coverprofile=coverage_unit.txt \
54
+ {{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
48
55
49
56
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-integration-task/Taskfile.yml
50
57
go:test-integration :
You can’t perform that action at this time.
0 commit comments