You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go list ./... | grep -v 'flaky_test_package'| xargs go test -timeout 5m -json -cover -covermode=count -coverprofile=unit-test-coverage.out 2>&1| tee /tmp/gotest.log | gotestloghelper -ci
3
+
go list ./... | grep -v 'example_test_package'| xargs go test -timeout 5m -json -cover -covermode=count -coverprofile=unit-test-coverage.out 2>&1| tee /tmp/gotest.log | gotestloghelper -ci
4
4
5
5
.PHONY: test
6
6
test:
7
7
go install github.com/gotesttools/gotestfmt/v2/cmd/gotestfmt@latest
8
8
set -euo pipefail
9
-
go list ./... | grep -v 'flaky_test_package'| xargs go test -json -cover -coverprofile unit-test-coverage.out -v 2>&1| tee /tmp/gotest.log | gotestfmt
9
+
go list ./... | grep -v 'example_test_package'| xargs go test -json -cover -coverprofile unit-test-coverage.out -v 2>&1| tee /tmp/gotest.log | gotestfmt
0 commit comments