https://github.com/tendermint/tendermint
Raw File
Tip revision: 8682489551b69d6b31947c9253c8c2f86fe4f2c7 authored by M. J. Fromberger on 18 April 2022, 05:34:09 UTC
Prepare changelog for release v0.35.4. (#8360)
Tip revision: 8682489
test_cover.sh
#! /bin/bash

PKGS=$(go list github.com/tendermint/tendermint/...)

set -e

echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
	go test -timeout 5m -race -coverprofile=profile.out "$pkg"
	if [ -f profile.out ]; then
		tail -n +2 profile.out >> coverage.txt;
		rm profile.out
	fi
done
back to top