Skip to content

Commit

Permalink
Test Django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jaap3 committed Feb 19, 2021
1 parent c8c0f6e commit 88a9c2e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Expand Up @@ -5,9 +5,10 @@ python:
- 3.7
- 3.8
env:
- DJANGO_VERSION='Django>=2.2,<3.0'
- DJANGO_VERSION='Django>=3.0,<3.1'
- DJANGO_VERSION='Django>=3.1,<3.2'
- DJANGO_VERSION='Django~=2.2.0'
- DJANGO_VERSION='Django~=3.0.0'
- DJANGO_VERSION='Django~=3.1.0'
- DJANGO_VERSION='Django>=3.2a1,<4.0'
install:
- pip install --upgrade pip
- pip install --upgrade $DJANGO_VERSION
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
@@ -1,14 +1,15 @@
[tox]
envlist = py{36,37,38}-dj{22,30,31}
envlist = py{36,37,38}-dj{22,30,31,32}

[testenv]
basepython = py36: python3.6
py37: python3.7
py38: python3.8
commands = python -W module manage.py test testproject
deps = dj22: Django>=2.2,<3.0
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
deps = dj22: Django~=2.2.0
dj30: Django~=3.0.0
dj31: Django~=3.1.0
dj32: Django>=3.2a1,<4.0

[testenv:flake8]
commands = flake8 djrichtextfield testproject
Expand Down

0 comments on commit 88a9c2e

Please sign in to comment.