From a49e7ebd0be17e155a1f214628f5c4102dc23dfb Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 7 Oct 2018 14:17:48 -0400 Subject: [PATCH] Add Python 3.6 and Django 2.0 targets to the tox file. Signed-off-by: Roberto Rosario --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 071199d7ce..c6d918278a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = coverage-clean - py{27,35}-django{1.10,1.11} + py{27,36}-django{1.10,1.11,2.0} coverage-report [testenv] @@ -10,6 +10,7 @@ basepython = py33: python3.3 py34: python3.4 py35: python3.5 + py36: python3.6 commands= coverage run {envdir}/bin/django-admin.py test --mayan-apps --settings=mayan.settings.testing --nomigrations @@ -20,6 +21,7 @@ deps = django1.9: django>=1.9,<1.10 django1.10: django>=1.10,<1.11 django1.11: django>=1.11,<1.12 + django2.0: django>=2.0,<2.1 setenv= COVERAGE_FILE=.coverage.tox.{envname}