diff --git a/scripts/install-local-kafka.sh b/scripts/install-local-kafka.sh index 582792c30..7215ffc10 100755 --- a/scripts/install-local-kafka.sh +++ b/scripts/install-local-kafka.sh @@ -11,7 +11,7 @@ mkdir -p .downloads KAFKA_URL=http://archive.apache.org/dist/kafka/2.1.0/kafka_2.11-2.1.0.tgz # Only download the kafka if it isn't already downloaded. -test -f .downloads/kafka.tgz || wget KAFKA_URL -O .downloads/kafka.tgz +test -f .downloads/kafka.tgz || wget KAFKA_URL -O .downloads/kafka.tgz\ # Unpack the kafka over the top of any existing installation mkdir -p kafka && tar xzf .downloads/kafka.tgz -C kafka --strip-components 1 # Start the zookeeper running in the background. diff --git a/scripts/travis-test.sh b/scripts/travis-test.sh index 1d5d05511..c2a5f221f 100755 --- a/scripts/travis-test.sh +++ b/scripts/travis-test.sh @@ -50,7 +50,7 @@ if [ "${TEST_SUITE:-lint}" == "lint" ]; then fi if [ "${TEST_SUITE:-unit-test}" == "unit-test" ]; then - gb test + go test ./... fi if [ "${TEST_SUITE:-integ-test}" == "integ-test" ]; then