Skip to content

Commit

Permalink
Prefer reusing installed packages if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Dec 16, 2023
1 parent 457fe75 commit 52aa29f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ jobs:
cache: true
cache-dependency-path: pdm.lock
- name: Install dependencies
run: pdm install -G:all
- name: Update AnyIO
run: pdm add --no-lock anyio[trio]@git+https://github.com/agronholm/anyio.git@${{ github.ref_name }}
run: |
pdm install -G:all
pdm add --no-lock --update-reuse-installed anyio[trio]@git+https://github.com/agronholm/anyio.git@${{ github.ref_name }}
- name: Test
run: pdm run pytest docs/examples tests -n auto

0 comments on commit 52aa29f

Please sign in to comment.