Skip to content

Commit

Permalink
Use system?
Browse files Browse the repository at this point in the history
  • Loading branch information
JBorrow committed Sep 19, 2024
1 parent a472d71 commit 3188823
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install uv
uv pip install flake8 pytest
if [ -f requirements.txt ]; then uv pip install -r requirements.txt; fi
if [ -f optional_requirements.txt ]; then uv pip install -r optional_requirements.txt; fi
uv pip install -e .
uv --system pip install flake8 pytest
if [ -f requirements.txt ]; then uv --system pip install -r requirements.txt; fi
if [ -f optional_requirements.txt ]; then uv --system pip install -r optional_requirements.txt; fi
uv --system pip install -e .
- name: Test with pytest
run: |
pytest
Expand Down

0 comments on commit 3188823

Please sign in to comment.