Skip to content

Commit

Permalink
Increase verbosity of test output
Browse files Browse the repository at this point in the history
Signed-off-by: Byron Ruth <[email protected]>
  • Loading branch information
bruth committed Jun 23, 2016
1 parent ce59ea3 commit 1fdb922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-cover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RETVAL=0
# Standard go tooling behavior is to ignore dirs with leading underscores
for dir in $(find . -maxdepth 10 -not -path './vendor*' -not -path './.git*' -not -path '*/_*' -type d); do
if find $dir -type f | grep \.go$ > /dev/null; then
go test -covermode=count -coverprofile=$dir/profile.tmp $dir || RETVAL=1;
go test -v -covermode=count -coverprofile=$dir/profile.tmp $dir || RETVAL=1

if [ -f $dir/profile.tmp ]; then
cat $dir/profile.tmp | tail -n +2 >> profile.cov
Expand Down

0 comments on commit 1fdb922

Please sign in to comment.