-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Upgrade tf for testing #625
Conversation
Makefile
Outdated
@@ -4,7 +4,7 @@ export DIRTY=$(shell if `git diff-index --quiet HEAD --`; then echo false; else | |||
LDFLAGS=-ldflags "-w -s -X github.com/chanzuckerberg/go-misc/ver.GitSha=${SHA} -X github.com/chanzuckerberg/go-misc/ver.Version=${VERSION} -X github.com/chanzuckerberg/go-misc/ver.Dirty=${DIRTY}" | |||
export BASE_BINARY_NAME=terraform-provider-snowflake_v$(VERSION) | |||
export GO111MODULE=on | |||
export TF_ACC_TERRAFORM_VERSION=0.12.29 | |||
export TF_ACC_TERRAFORM_VERSION=0.13 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add the readme that there's now a version requirement for the provider
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Integration tests failure for 82ac5bf9a68c14dfc265ad0d1408afe5b65488aa |
Integration tests failure for 8b6bfa1657f37beb879e5bb44acf1b6d6f0b9d69 |
Integration tests failure for aaa8cb749dfc1a3659b379b3bb2bd85469e8f7b5 |
Integration tests failure for 622c3266841d2249b88dc5ace38d11f57febe2ba |
Integration tests failure for ebb83498ef076bbfea1d0a652789b0022237fe09 |
Integration tests failure for b6f3596dc4b4144e6e227b870d26bb02559f61e3 |
Integration tests failure for 529c23cc8dde688334b2e912cc45c68ea599d680 |
…berg/terraform-provider-snowflake into adoami/upgrade-tf-for-testing
Integration tests failure for f17f84fbd5bb0b92cc9d24ba7bbb579cd580c88d |
Integration tests failure for b0b12d58b82af08f7d3a229b31ed7132339e70b3 |
Integration tests failure for ac2e13e909120bbf4bc752fa02fbf9278d3d9ec3 |
Integration tests failure for 0b54ac4d56d056c146ab0c30fc0d66ee47b8cd1b |
@alldoami I couldn't clone your branch, I upgraded locally and figured it out to fix the remaining failing tests: For SCIM integration test failures:
For the current datasources the behavior has changed with 0.13 so to pass these tests the direct dependency should be added:
For Storage Integration error message format has changed in 0.13
|
Integration tests success for 4b1b863e7533da2651643dbec574f9ecc0e62162 |
To address this problem: #622 (comment)
Upgrading our tf version for testing!