]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/commitdiff
Updating Makefile + Add gitignore
authorJake Champlin <jake.champlin.27@gmail.com>
Tue, 6 Jun 2017 20:29:54 +0000 (16:29 -0400)
committerJake Champlin <jake.champlin.27@gmail.com>
Tue, 6 Jun 2017 20:29:54 +0000 (16:29 -0400)
.gitignore [new file with mode: 0644]
GNUmakefile

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..5982d2c
--- /dev/null
@@ -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/
index 151c78c24eb207c4e7114029ee7190333dc3cf8a..6234687a37a2923ca4bd788888600ccfd54293b8 100644 (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