Skip to content

Commit

Permalink
Upgrade pip before installation in CI
Browse files Browse the repository at this point in the history
The pip installation of local project via pyproject.toml can have issues
on ubuntu-22.04 which is used by GitHub CI. The pip upgrade should solve
the issue.

Reference: pypa/setuptools#3269
Signed-off-by: Jan Richter <jarichte@redhat.com>
  • Loading branch information
richtja committed Dec 3, 2024
1 parent 031c51a commit bea5005
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/modules-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
run: pip3 install 'avocado-framework<104.0'

- name: Include autils directory from source tree into Python's PATH
run: pip3 install .
run: |
pip install --upgrade pip
pip3 install .
- name: run static checks
uses: avocado-framework/avocado-ci-tools@main
Expand Down

0 comments on commit bea5005

Please sign in to comment.