Skip to content
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

Use shell: bash when installing wheels in CIs #52

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

andreped
Copy link
Collaborator

I observed an issue with installing compiled wheels in my test CIs in another project.

Apparently, pip ignores the --file-links argument if it finds a suitable wheel with the same name on PyPI. That means that it will ignore installing from the existing local wheel, and instead download the one on PyPI and install that one. This defeats the purpose of the test, as we are not testing the correct wheel!

This was solved by adding the -* wildcard fix like so package_name-* to the command. However, that fails in Powershell (on Windows). Thus, forcing the command to run with bash works for all operating systems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant