diff options
author | Flavio Castelli <fcastelli@suse.com> | 2018-02-19 21:17:50 +0100 |
---|---|---|
committer | Flavio Castelli <fcastelli@suse.com> | 2018-02-19 21:17:50 +0100 |
commit | e456355639d72af6ff2da2acd30ec3e914bdd996 (patch) | |
tree | aa7f39d6da891c80a133754c76216e5828fb6f12 /Makefile | |
parent | aad5f91194a9a559663f440194d88ae6e2e4a482 (diff) | |
download | terraform-provider-libvirt-e456355639d72af6ff2da2acd30ec3e914bdd996.tar terraform-provider-libvirt-e456355639d72af6ff2da2acd30ec3e914bdd996.tar.gz |
Add make target to run acceptance tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -9,6 +9,9 @@ install: test: go test -v -covermode=count -coverprofile=profile.cov ./libvirt +testacc: + ./travis/run-tests-acceptance + vet: @echo "go vet ." @go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \ |