Skip to content

Commit df84842

Browse files
committed
ci(workflow): upgrade pytest-randomly for Python 3.9+
1 parent 2b17f48 commit df84842

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ jobs:
7373
poetry run pip install -U pip
7474
poetry run pip install -U "django==${{ matrix.django-version }}.*"
7575
76+
# Upgrade pytest-randomly for Python 3.9+
77+
if [[ "${{ matrix.python-version }}" != "3.8" ]]; then
78+
poetry run pip install "pytest-randomly>=3.16.0"
79+
fi
80+
7681
- name: Run tests
7782
run: |
7883
poetry run pytest

0 commit comments

Comments
 (0)