Skip to content

Commit

Permalink
ci(github): swap pip installation order
Browse files Browse the repository at this point in the history
  • Loading branch information
kmnhan committed Apr 8, 2024
1 parent 506faa6 commit afa4722
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
run: |
sudo apt update && sudo apt install -y libegl1-mesa-dev
python -m pip install --upgrade pip
python -m pip install -v . pytest pytest-xdist
python -m pip install -r requirements.txt
python -m pip install -v . pytest pytest-xdist
- name: Test with pytest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
run: |
sudo apt update && sudo apt install -y libegl1-mesa-dev
python -m pip install --upgrade pip
python -m pip install -v . pytest pytest-xdist
python -m pip install -r requirements.txt
python -m pip install -v . pytest pytest-xdist
- name: Test with pytest
Expand Down

0 comments on commit afa4722

Please sign in to comment.