Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit 9ee3ab1

Browse files
committed
Get 3.9 and django 3.2 tests working
1 parent 6e46403 commit 9ee3ab1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@ jobs:
1010
max-parallel: 5
1111
matrix:
1212
python-version: ['3.9', '3.10']
13-
13+
django-version: ['3.2']
1414
steps:
1515
- uses: actions/checkout@v2
1616

17-
- name: Set up Python ${{ matrix.python-version }}
17+
- name: Set up Python ${{ matrix.python-version }} Django ${{ matrix.django-version }})
1818
uses: actions/setup-python@v2
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121

22-
2322
- name: Get pip cache dir
2423
id: pip-cache
2524
run: |
@@ -42,6 +41,8 @@ jobs:
4241
- name: Tox tests
4342
run: |
4443
tox -v
44+
env:
45+
DJANGO: ${{ matrix.django-version }}
4546

4647
- name: Upload coverage
4748
uses: codecov/codecov-action@v1

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ envlist =
55
docs,
66
py{37,38,39}-dj22,
77
py{37,38,39,310}-dj32,
8-
py{38,39,310}-dj40,
9-
py{38,39,310}-djmain,
108

119
[gh-actions]
1210
python =

0 commit comments

Comments
 (0)