From 90aaae2ba2f19f5e2f68b28becae53c56fc1edba Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Tue, 2 Jun 2015 18:24:14 +0300 Subject: [PATCH] makefile: remove ginkgo flags. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 33dc9733..d3763d61 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ all: testdeps - go test ./... -v 1 -ginkgo.slowSpecThreshold=10 -cpu=1,2,4 - go test ./... -ginkgo.slowSpecThreshold=10 -short -race + go test ./... -v=1 -cpu=1,2,4 + go test ./... -short -race test: testdeps - go test ./... -v 1 -ginkgo.slowSpecThreshold=10 + go test ./... -v=1 testdeps: .test/redis/src/redis-server