diff --git a/.zuul.yaml b/.zuul.yaml index 24c288d..e45dfbe 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,9 +1,7 @@ - project: check: jobs: - - horizon-openstack-tox-py35dj20: - required-projects: - openstack/horizon + - horizon-openstack-tox-python3-django111 - nodejs-npm-run-lint: vars: node_version: 4 @@ -19,9 +17,7 @@ openstack/horizon gate: jobs: - - horizon-openstack-tox-py35dj20: - required-projects: - openstack/horizon + - horizon-openstack-tox-python3-django111 - nodejs-npm-run-lint: vars: node_version: 4 diff --git a/tox.ini b/tox.ini index 7b9c0f2..b32f182 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = pep8,py27-local,py35-local,py35dj20-local,eslint,karma-local,docs-local,releasenotes,lower-constraints-local +envlist = pep8,py27-local,py35-local,py3-dj111-local,eslint,karma-local,docs-local,releasenotes,lower-constraints-local minversion = 2.3.2 skipsdist = True @@ -61,17 +61,17 @@ commands = {[testenv:hz-local]commands} {[testenv]commands} -[testenv:py35dj20] -basepython = python3.5 +[testenv:py3-dj111] +basepython = python3 commands = - {[testenv:hz-local]commands} + pip install django>=1.11,<2 {[testenv]commands} -[testenv:py35dj20-local] -basepython = python3.5 +[testenv:py3-dj111-local] +basepython = python3 commands = {[testenv:hz-local]commands} - pip install -U django>=2.0,<2.1 + pip install django>=1.11,<2 {[testenv]commands} [testenv:eslint]