Remove from test and test-short in Makefile

This commit is contained in:
Cameron Sparr 2015-12-04 12:27:56 -07:00
parent 6c23fb3173
commit 9999b2e3c6
1 changed files with 2 additions and 2 deletions

View File

@ -85,14 +85,14 @@ docker-kill:
-docker rm nsq aerospike redis opentsdb rabbitmq postgres memcached mysql kafka mqtt riemann
# Run full unit tests using docker containers (includes setup and teardown)
test: docker-kill prepare docker-run
test: docker-kill docker-run
# Sleeping for kafka leadership election, TSDB setup, etc.
sleep 60
# SUCCESS, running tests
go test -race ./...
# Run "short" unit tests
test-short: prepare
test-short:
go test -short ./...
.PHONY: test