Skip to content

Commit

Permalink
Fix CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-hilden committed Jul 4, 2024
1 parent b115625 commit a9b34f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
python-version: ${{matrix.python-version}}
- name: Install package
run: |
python -m pip install --upgrade pip
pip install uv
python -m pip install -U pip uv
uv venv && source .venv/bin/activate
uv pip install . -r requirements/test
- name: Run test suite
run: pytest
Expand All @@ -44,8 +44,8 @@ jobs:
python-version: "3.12"
- name: Install package
run: |
python -m pip install --upgrade pip
pip install uv
python -m pip install -U pip uv
uv venv && source .venv/bin/activate
uv pip install . -r requirements/dev
- name: Run tox environments
run: tox

0 comments on commit a9b34f7

Please sign in to comment.