mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 10:42:07 +00:00
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu
|
|
coverage_file_path="$(mktemp coverage.out.rerun.XXXXXXXXXX --tmpdir="${PACKAGE_DIR}")"
|
|
go test -json \
|
|
-covermode=atomic \
|
|
-coverprofile="${coverage_file_path}" \
|
|
-coverpkg ./... \
|
|
"$@"
|