tox: add tests against django 2.2 (#41286)

This commit is contained in:
Frédéric Péters 2020-04-02 21:13:07 +02:00
parent 8c459f523c
commit ae981257c3
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27-django111-coverage-pylint,py3-django111
envlist = py27-django111-coverage-pylint,py3-django111,py3-django22
toxworkdir = {env:TMPDIR:/tmp}/tox-{env:USER}/welco/{env:BRANCH_NAME:}
[testenv]
@ -12,6 +12,7 @@ setenv =
coverage: COVERAGE=--junitxml=junit-{envname}.xml --cov-report xml --cov-report html --cov=welco/
deps =
django111: django>=1.11,<1.12
django22: django>=2.2,<2.3
pytest-cov
pytest-django
pytest!=5.3.3