From: Jake Champlin Date: Tue, 6 Jun 2017 20:29:54 +0000 (-0400) Subject: Updating Makefile + Add gitignore X-Git-Tag: v0.1.0~7 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7;p=github%2Ffretlink%2Fterraform-provider-statuscake.git Updating Makefile + Add gitignore --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5982d2c --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +*.dll +*.exe +.DS_Store +example.tf +terraform.tfplan +terraform.tfstate +bin/ +modules-dev/ +/pkg/ +website/.vagrant +website/.bundle +website/build +website/node_modules +.vagrant/ +*.backup +./*.tfstate +.terraform/ +*.log +*.bak +*~ +.*.swp +.idea +*.iml +*.test +*.iml + +website/vendor + +# Test exclusions +!command/test-fixtures/**/*.tfstate +!command/test-fixtures/**/.terraform/ diff --git a/GNUmakefile b/GNUmakefile index 151c78c..6234687 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -7,7 +7,7 @@ default: build build: fmtcheck go install -test: fmtcheck errcheck +test: fmtcheck go test -i $(TEST) || exit 1 echo $(TEST) | \ xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4