-
Notifications
You must be signed in to change notification settings - Fork 18
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
Auto-add missing variables to passenv #106
Comments
Currently we /should/ be passing through passenv_list = (
"HOME",
"DOCKER_HOST",
"CONTAINER_HOST",
) Are these currently passing through? If not, then we need to write a test for that and fix it. If so, then we simply need to expand it. My use cases seem to indicate they are passing through properly, but I don't use any of those three things very heavily in my testing. |
For sure |
One very common mistake while using molecule with tox is to forget to alter passenv to add at least:
Missing any of these can cause various failures which are no easy to debug by the average user. Adding them by default may make the plugin easier to use.
The text was updated successfully, but these errors were encountered: