Skip to content

Commit ea8558e

Browse files
committed
try fix test
1 parent a5fb7e4 commit ea8558e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,11 @@ jobs:
8282
uses: extractions/setup-just@v2
8383
- name: Install Dependencies
8484
run: |
85-
just setup ${{ steps.sp.outputs.python-path }}
86-
just test-lock Django~=${{ matrix.django-version }}.0
87-
sudo apt remove powershell
85+
if [ "${{ matrix.django-version }}" = "5.2b1" ]; then
86+
just test-lock "Django==${{ matrix.django-version }}"
87+
else
88+
just test-lock "Django~=${{ matrix.django-version }}.0"
89+
fi
8890
- name: Run Unit Tests
8991
run: |
9092
just test ./tests/verify_environment.py

0 commit comments

Comments
 (0)