We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b17f48 commit df84842Copy full SHA for df84842
1 file changed
.github/workflows/test.yml
@@ -73,6 +73,11 @@ jobs:
73
poetry run pip install -U pip
74
poetry run pip install -U "django==${{ matrix.django-version }}.*"
75
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
+
81
- name: Run tests
82
run: |
83
poetry run pytest
0 commit comments