summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlvaro Saurin <alvaro.saurin@gmail.com>2017-10-19 17:39:31 +0200
committerAlvaro <alvaro.saurin@gmail.com>2017-11-27 13:04:37 +0100
commitc7cc7221d46e8fa7ee7d64c7eab64f5515980fc1 (patch)
tree94f923062c9ff708b7f5c80621a6f6634befd0b2 /Makefile
parent39b7567db8477cebf98ca7ff225c2a356b42bd98 (diff)
downloadterraform-provider-libvirt-c7cc7221d46e8fa7ee7d64c7eab64f5515980fc1.tar
terraform-provider-libvirt-c7cc7221d46e8fa7ee7d64c7eab64f5515980fc1.tar.gz
Simplify the wait_for_leases mechanism
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 72b45f91..317970d8 100644
--- a/Makefile
+++ b/Makefile
@@ -3,11 +3,12 @@ default: build
build: gofmtcheck golint vet
go build
-install:
+install:
go install
-test:
- bash travis/run_acceptance_test.sh
+test:
+ bash travis/run-tests-acceptance
+
vet:
@echo "go vet ."
@go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
@@ -19,7 +20,8 @@ vet:
golint:
golint ./libvirt
+
gofmtcheck:
- bash travis/gofmtcheck.sh
+ bash travis/run-gofmt
.PHONY: build install test vet fmt golint