-
Notifications
You must be signed in to change notification settings - Fork 573
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
feat: support pipfile on containerized cli #1288
Conversation
c88bf24
to
04a0c35
Compare
pip install -U -e "${PROJECT_PATH}" | ||
elif [ -f "${PROJECT_PATH}/Pipfile" ]; then | ||
echo "Found Pipfile" | ||
installPipfileDeps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean? This was always executed, to install the python deps if those files are found
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just making sure it's not something custom that i missed it's definition i didn't use pipfile beforehand :)
python on containerized env will auto detects only if file is not provided
04a0c35
to
57e860b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Boost stamp of approval
🎉 This PR is included in version 1.367.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
What does this PR do?
It allows the user to specify a -f
Pipfile
when running the CLI in a containerized environment.Also, fix issues with automatically detecting a
setup.py
file and installing its dependencies, but only if no-f
was provided.