From de1649be29dbacccc0b0db1c7702fcb13c231891 Mon Sep 17 00:00:00 2001 From: Jake Champlin Date: Tue, 6 Jun 2017 16:29:07 -0400 Subject: [PATCH] Updating Makefile + Add gitignore --- .gitignore | 31 +++++++++++++++++++++++++++++++ GNUmakefile | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..5982d2c64 --- /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 151c78c24..6234687a3 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