-
Notifications
You must be signed in to change notification settings - Fork 681
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
Fixes configuration for Azure integrationt tests #2941
Conversation
Rakefile
Outdated
@@ -162,7 +162,9 @@ namespace :test do | |||
sh("cd #{integration_dir}/build/ && terraform workspace new #{tf_workspace}") | |||
|
|||
# Generate Azure crendentials | |||
creds = Train.create('azure').connection.connect | |||
connection = Train.create('azure').connection | |||
connection.connect |
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.
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.
Ahh nice catch. I'll update.
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.
I updated and confirmed it works without the explicit connect.
Updates some calls in train so we can access the configuration options for some integration tests. Signed-off-by: David McCown <[email protected]>
fa1dcb9
to
86e7d5d
Compare
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.
Awesome!
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.
Thanks @dmccown
Updates some calls in train so we can access the configuration options
for some integration tests.
Signed-off-by: David McCown [email protected]