-
Notifications
You must be signed in to change notification settings - Fork 8
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
Implement temporary fix for CI #376
Conversation
AFAIK, to unset an env var (or any other value in yaml in general), you would need to set it to |
I think setting it to (I went through a similar realisation about what |
The real problem is that the code is actually checking |
Yep that was the original implementation (and now we decided to drop this warning/exception completely). This was intended as we anticipate either one of the two situations:
We cannot think of too many cases where the user would need to change the value of |
This reverts commit fe6e6d9.
Resolves #372
See also, discussion in
pymatgen
: materialsproject/pymatgen#4243I think unsetting
CI
is the only solution, as I think otherwiseos.getenv("CI") is not None
evaluates toTrue
, even ifCI
is set to""
,False
, etc.This change should be reverted once #374 is implemented, as we should be able to update monty to include the fix: materialsvirtuallab/monty#735.