-
Notifications
You must be signed in to change notification settings - Fork 58
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
work well with other testing frameworks in test-kitchen #40
Conversation
fixes #11 |
We should add detection if the path contains directories like |
f26da1a
to
9bca19a
Compare
9bca19a
to
8038cce
Compare
8038cce
to
15a3db7
Compare
981922e
to
05fa066
Compare
@@ -132,7 +150,6 @@ def runner_options_for_ssh(config_data) | |||
} | |||
opts['key_files'] = kitchen[:keys] unless kitchen[:keys].nil? | |||
opts['password'] = kitchen[:password] unless kitchen[:password].nil? | |||
|
|||
opts |
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.
If you want to save space here, why not also drop the opts
? It's the return value of the assignment anyways. And we might as well drop that assignment and just return the hash. ;)
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.
Anyway, LGTM 👍
work well with other testing frameworks in test-kitchen
No description provided.