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
env-vars
I have created a default env with the following:
[tool.hatch.envs.default.env-vars] PIP_INDEX_URL = "<my-custom-pypi-url>"
I then define a docs env with:
docs
[tool.hatch.envs.docs.env-vars] PYTHONUNBUFFERED = "1" MKDOCS_CONFIG = "mkdocs.yml"
And now I notice that the PIP_INDEX_URL is not set to the one in default when I run hatch env show.
PIP_INDEX_URL
default
hatch env show
Similarly I have a detached lint env and that does not appear to inherit any env-vars despite not setting any itself.
detached
lint
Are these expected behaviours?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have created a default env with the following:
I then define a
docs
env with:And now I notice that the
PIP_INDEX_URL
is not set to the one indefault
when I runhatch env show
.Similarly I have a
detached
lint
env and that does not appear to inherit anyenv-vars
despite not setting any itself.Are these expected behaviours?
The text was updated successfully, but these errors were encountered: