From ae981257c3e99b9857c124de14c83a50dda94221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 2 Apr 2020 21:13:07 +0200 Subject: [PATCH] tox: add tests against django 2.2 (#41286) --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a3ed435..7926876 100644 --- a/tox.ini +++ b/tox.ini @@ -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