add Django 3.0 to the test matrix

This commit is contained in:
Misha Kalyna 2019-10-05 21:39:41 +02:00
parent 8d95596ffb
commit 678088ac77
2 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,8 @@ matrix:
env: DJANGO=2.1
- python: 3.6
env: DJANGO=2.2
- python: 3.6
env: DJANGO=3.0
- python: 3.6
env: DJANGO=master
@ -46,6 +48,8 @@ matrix:
env: DJANGO=2.1
- python: 3.7
env: DJANGO=2.2
- python: 3.7
env: DJANGO=3.0
- python: 3.7
env: DJANGO=master

View File

@ -1,6 +1,7 @@
[tox]
envlist =
py{27,35,36,37}-django{111,20,21,22,master},
py{36,37}-django30,
black,flake8
[travis:env]
@ -9,6 +10,7 @@ DJANGO =
2.0: django20
2.1: django21
2.2: django22
3.0: django30
master: djangomaster
[testenv]
@ -23,6 +25,7 @@ deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
django30: Django>=3.0a1,<3.1
djangomaster: https://github.com/django/django/archive/master.zip
commands = {posargs:py.test --cov=graphene_django graphene_django examples}