-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
PATH modification is not passed to the test commands #1423
Comments
the way tox works is by creating a virtualenv, prefixing the |
Yes - that helps understand why it is happening. This behavior can be however confusing and unexpected. I see a room for improvement here:
Currently, the |
Feel free to open a PR against master and fix it. My available efforts at the moment are aimed at fixing this as part of #1394, but that probably will take a while (ETA September). |
Hello, this now has been released via https://pypi.org/project/tox/3.15.0/ |
Here is my example
tox.ini
:I was expecting, that the
os.environ.get('PATH')
, will give the same result asecho {env:PATH}
. Turns out it doesn't:The
passenv = PATH
doesn't change anything here.In the documentation, I cannot find anything that would state that this is expected behavior.
The text was updated successfully, but these errors were encountered: