https://github.com/tendermint/tendermint
Raw File
Tip revision: 5727916c5b31748714dc6a23742ee44a40e85a75 authored by Ethan Buchman on 04 June 2018, 22:48:22 UTC
Merge pull request #1681 from tendermint/release/v0.19.8
Tip revision: 5727916
test_cover.sh
#! /bin/bash

PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)

set -e

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