We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fb7e4 commit ea8558eCopy full SHA for ea8558e
.github/workflows/test.yml
@@ -82,9 +82,11 @@ jobs:
82
uses: extractions/setup-just@v2
83
- name: Install Dependencies
84
run: |
85
- just setup ${{ steps.sp.outputs.python-path }}
86
- just test-lock Django~=${{ matrix.django-version }}.0
87
- sudo apt remove powershell
+ if [ "${{ matrix.django-version }}" = "5.2b1" ]; then
+ just test-lock "Django==${{ matrix.django-version }}"
+ else
88
+ just test-lock "Django~=${{ matrix.django-version }}.0"
89
+ fi
90
- name: Run Unit Tests
91
92
just test ./tests/verify_environment.py
0 commit comments