Updating Makefile + Add gitignore

This commit is contained in:
Jake Champlin 2017-06-06 16:27:28 -04:00
parent f0cc9af4bc
commit c587774384
No known key found for this signature in database
GPG Key ID: DC31F41958EF4AC2
2 changed files with 32 additions and 1 deletions

31
.gitignore vendored Normal file
View File

@ -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/

View File

@ -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