mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 08:32:16 +01:00
7 lines
260 B
Bash
Executable File
7 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# TODO: remove -buildvcs=false when fix for https://github.com/golang/go/issues/51723 is live.
|
|
go test -buildvcs=false -race -covermode=atomic -coverprofile=/tests/coverage.txt ./...
|
|
go tool cover -html=coverage.txt -o /tests/coverage.html |