From 79f38b289a6bc2caa8677c7eae6ba3fed74eb924 Mon Sep 17 00:00:00 2001 From: dmaiocchi Date: Thu, 18 Oct 2018 18:20:36 +0200 Subject: [PATCH] Make makefile backward golang compatible --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c7fa272a..eeb406a19 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,10 @@ install: go install test: - go test -v -covermode=count -coverprofile=profile.cov . ./libvirt - + go test -v -covermode=count -coverprofile=profile.cov ./libvirt + go test -v . testacc: + go test -v . ./travis/run-tests-acceptance vet: