From 99f4049c71d6a4adc33ff06b4f14590a379c0b71 Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Sun, 2 Dec 2018 19:28:06 +0100 Subject: [PATCH] make: fix integration test command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 89b4e10..6f85389 100644 --- a/Makefile +++ b/Makefile @@ -134,7 +134,7 @@ test-unit: dev-deps format test-integration: dev-deps format @echo -e "$(OK_COLOR)==> Running integration tests...$(NO_COLOR)" - go test -v -timeout 1h -race -coverprofile=coverage.inte.out -covermode=atomic -coverpkg ./gluster/... ./gluster/integration + GO111MODULE=off go test -v -timeout 1h -race -coverprofile=coverage.inte.out -covermode=atomic -coverpkg ./gluster/... ./gluster/integration test-coverage: test @echo -e "$(OK_COLOR)==> Uploading coverage ...$(NO_COLOR)"