You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While pyenv is used to build these images, the shell integrations are missing.
What this means is that if you install a package that provides a console script, such as pytest, the console script will not be available in your Circle CI jobs.
We had a similar issue. When using tfenv in CircleCI, export PATH=$HOME/.tfenv/bin:$PATH would entirely break pyenv. Instead we had to symlink tfenv and terraform binaries to a path that already existed in PATH.
Describe the bug
While pyenv is used to build these images, the shell integrations are missing.
What this means is that if you install a package that provides a console script, such as pytest, the console script will not be available in your Circle CI jobs.
To Reproduce
A job with the following steps will do it:
Expected behavior
I'd expect the
pytest
help message to be printed.Workarounds
I'm going to try
python -m pytest
instead.The text was updated successfully, but these errors were encountered: