Skip to content

Commit

Permalink
Revert "See if 25 quickchecks are OK"
Browse files Browse the repository at this point in the history
This reverts commit feafe9b.

Circle builds are breaking.
  • Loading branch information
otoolep committed Sep 2, 2015
1 parent feafe9b commit b5d3bb6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions circle-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ BUILD_DIR=$HOME/influxdb-build
GO_VERSION=go1.5
PARALLELISM="-parallel 256"
TIMEOUT="-timeout 480s"
QUICKCHECKS="-quickchecks 25"

# Executes the given statement, and exits if the command returns a non-zero code.
function exit_if_fail {
Expand Down Expand Up @@ -52,7 +51,7 @@ exit_if_fail go build -v ./...
exit_if_fail go tool vet --composites=false .
case $CIRCLE_NODE_INDEX in
0)
go test $QUICKCHECKS $PARALLELISM $TIMEOUT -v ./... 2>&1 | tee $CIRCLE_ARTIFACTS/test_logs.txt
go test $PARALLELISM $TIMEOUT -v ./... 2>&1 | tee $CIRCLE_ARTIFACTS/test_logs.txt
rc=${PIPESTATUS[0]}
if [[ $rc != 0 ]]; then
exit $rc
Expand All @@ -67,7 +66,7 @@ case $CIRCLE_NODE_INDEX in
rc=$?
;;
1)
GORACE="halt_on_error=1" go test $QUICKCHECKS $PARALLELISM $TIMEOUT -v -race ./... 2>&1 | tee $CIRCLE_ARTIFACTS/test_logs_race.txt
GORACE="halt_on_error=1" go test $PARALLELISM $TIMEOUT -v -race ./... 2>&1 | tee $CIRCLE_ARTIFACTS/test_logs_race.txt
rc=${PIPESTATUS[0]}
;;
esac
Expand Down

0 comments on commit b5d3bb6

Please sign in to comment.