https://github.com/tendermint/tendermint
Raw File
Tip revision: 93c4312cdd6406ef26847021c81b50c6f7e98339 authored by Ethan Buchman on 09 April 2018, 12:20:36 UTC
Merge pull request #1432 from tendermint/bucky/aminoify
Tip revision: 93c4312
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