Skip to content

Commit b5fca60

Browse files
committed
fix 5.2b1 tests
1 parent 16c289e commit b5fca60

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- postgres-version: '9.6'
6060
django-version: '5.2b1'
61-
61+
6262
- postgres-version: '12'
6363
django-version: '5.2b1'
6464

@@ -121,7 +121,11 @@ jobs:
121121
- name: Install Release Dependencies
122122
run: |
123123
just setup ${{ steps.sp.outputs.python-path }}
124-
just test-lock Django~=${{ matrix.django-version }}.0
124+
if [ "${{ matrix.django-version }}" = "5.2b1" ]; then
125+
just test-lock "Django==${{ matrix.django-version }}"
126+
else
127+
just test-lock "Django~=${{ matrix.django-version }}.0"
128+
fi
125129
- name: Install Emacs
126130
if: ${{ github.event.inputs.debug == 'true' }}
127131
run: |

0 commit comments

Comments
 (0)