Testing refactor for Jenkins (#1098)

* de-mystify tests & run them in parallel (#1031)

* test optimization for jenkins (#1093)

* makefile cleanup

* tests: split fast and slow go tests, closes #1055

* pr comments

* restore circle conditions

* fix need_abci

* ...

* docker run: no :Z for circle?

* Remove cmd breaking comment
This commit is contained in:
Zach
2018-03-08 22:52:38 +08:00
committed by Anton Kaliaev
parent 2ce57a65ff
commit 13a2013229
13 changed files with 69 additions and 99 deletions

View File

@ -3,6 +3,7 @@
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"