Skip to content

Commit fae6b3c

Browse files
committed
Remove history size
1 parent ea27dbf commit fae6b3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/coverage.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ go build main.go
1111

1212
PKGS=$(go list ./... | grep -v /vendor/)
1313
for pkg in $PKGS; do
14-
GORACE="history_size=7" go test -race -coverprofile=profile.out -covermode=atomic $pkg
14+
go test -race -coverprofile=profile.out -covermode=atomic $pkg
1515
if [[ -f profile.out ]]; then
1616
cat profile.out >> coverage.txt
1717
rm profile.out

0 commit comments

Comments
 (0)