Skip to content

Commit

Permalink
Merge pull request #12 from lawrencegripper/lg/issue/8
Browse files Browse the repository at this point in the history
Fix 'expected struct, but got string' error
  • Loading branch information
lawrencegripper authored Jan 20, 2019
2 parents dff6dbd + 0f5b553 commit cede592
Show file tree
Hide file tree
Showing 3,230 changed files with 383,338 additions and 1,600,173 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ website/vendor
# Test exclusions
!command/test-fixtures/**/*.tfstate
!command/test-fixtures/**/.terraform/
**/terraform-provider-kubernetes
**/terraform-provider-kubernetes-yaml
**/terraform-provider-k8sraw
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@ install:

script:
- bash scripts/startminikube_ci.sh
- make build
- make testacc
- make build-binaries

matrix:
fast_finish: true
allow_failures:
- go: tip

before_deploy:
- make build-binaries
- git tag "v0.1.$TRAVIS_BUILD_NUMBER"
- export BODY=$(git log -1 --pretty='%s')

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test: fmtcheck
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4

testacc: fmtcheck
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
TF_ACC=1 go test ./kubernetes -v $(TESTARGS) -timeout 120m

vet:
@echo "go vet ."
Expand Down
Loading

0 comments on commit cede592

Please sign in to comment.