Skip to content

Commit

Permalink
Add print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri Shkuro committed Sep 20, 2017
1 parent efacab9 commit 170ee04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ install_ci: install install_examples

.PHONY: test_ci
test_ci: build_examples
@go test -i $(shell glide novendor)
@echo pre-compiling tests
@time go test -i $(shell glide novendor)
@./scripts/cover.sh $(shell go list $(PACKAGES))
make lint

Expand Down
2 changes: 1 addition & 1 deletion scripts/cover.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ for pkg in "$@"; do
args="-coverprofile $COVER/cover.${i}.out" # -coverpkg $coverpkg
fi

echo go test -v -race "$pkg"
echo go test $args -v -race "$pkg"
time go test $args -v -race "$pkg"
done

Expand Down

0 comments on commit 170ee04

Please sign in to comment.