We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nox.options.default_venv_backend
Often times it's easier to set an environment variable than passing the same argument to multiple commands.
A new environment variable that's used as the default value of --default-venv-backend when present.
--default-venv-backend
Some possible names: NOX_DEFAULT_VENV_BACKEND or NOXDEFAULTVENVBACKEND
NOX_DEFAULT_VENV_BACKEND
NOXDEFAULTVENVBACKEND
Something like
# noxfile.py import os import nox nox.options.default_venv_backend = os.environ.get("NOX_DEFAULT_VENV_BACKEND", "virtualenv")
If this accepted, I can start working on a PR :)
The text was updated successfully, but these errors were encountered:
NOX_DEFAULT_VENV_BACKEND sounds good to me.
Sorry, something went wrong.
Allow configuring default_venv_backend with an environment variable
default_venv_backend
34da521
Closes wntrblm#776
Allow configuring default_venv_backend with an environment variable (…
93bacbd
…#780) Closes #776
Successfully merging a pull request may close this issue.
How would this feature be useful?
Often times it's easier to set an environment variable than passing the same argument to multiple commands.
Describe the solution you'd like
A new environment variable that's used as the default value of
--default-venv-backend
when present.Some possible names:
NOX_DEFAULT_VENV_BACKEND
orNOXDEFAULTVENVBACKEND
Describe alternatives you've considered
Something like
Anything else?
If this accepted, I can start working on a PR :)
The text was updated successfully, but these errors were encountered: