Skip to content

Commit

Permalink
Force install hatch in Test Open API job (apache#36938)
Browse files Browse the repository at this point in the history
The python hatch package might be installed from cache but fail to
be available on commmand line. This PR forces hatch installation,
whihc will also make it available as command.
  • Loading branch information
potiuk authored Jan 22, 2024
1 parent e07a42e commit e34b253
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,8 @@ jobs:
- name: Install hatch
run: |
python -m pip install --upgrade pipx
pipx install hatch
pipx ensurepath
pipx install hatch --force
- name: Run tests
run: hatch run run-coverage
env:
Expand Down

0 comments on commit e34b253

Please sign in to comment.