6285103ef0
Previously install_command specifies upper-constraints so lower-constraints actually did not work. upper-constraints must be specified via 'deps' instead of 'install_command'. The fix reveals that django-formtools 1.0 is not compatible with Django 1.11 or later. django-formtools 2.0 seems the minimum requirement. Castellan 0.16.0 is not compatible with murano-dashboard because there is barbican_endpoint_type. The minimum required version is 0.18.0. This commit also drops Django dependency in requirements.txt. After commit 7e91070789187d9e6b5ac2b57ca755504e058e32 in openstack/requirements repo, all project requirements.txt must have lower bounds and Django entry hits this. Horizon declares django dependencies, so there is no need to declare django dependencies in murano-dashboard explicitly. Change-Id: I3048ca5570523494f5a58a15449902f8cb3eb3a4
83 lines
2.8 KiB
INI
83 lines
2.8 KiB
INI
[tox]
|
|
envlist = py35,py27,pep8
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
NOSE_WITH_OPENSTACK=1
|
|
NOSE_OPENSTACK_COLOR=1
|
|
NOSE_OPENSTACK_RED=0.05
|
|
NOSE_OPENSTACK_YELLOW=0.025
|
|
NOSE_OPENSTACK_SHOW_ELAPSED=1
|
|
DJANGO_SETTINGS_MODULE=muranodashboard.tests.settings
|
|
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
http://tarballs.openstack.org/heat-dashboard/heat-dashboard-master.tar.gz
|
|
commands = {toxinidir}/manage.py test muranodashboard --settings=muranodashboard.tests.settings
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
sitepackages = False
|
|
commands = flake8
|
|
|
|
[testenv:py27-ocata]
|
|
install_command = pip install -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
http://tarballs.openstack.org/horizon/horizon-stable-ocata.tar.gz
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
basepython = python3
|
|
commands = {toxinidir}/tools/cover.sh {posargs}
|
|
|
|
[testenv:pyflakes]
|
|
deps = flake8
|
|
commands = flake8
|
|
|
|
[testenv:eslint]
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
passenv = *
|
|
commands = nodeenv -p
|
|
npm install
|
|
npm run lint
|
|
|
|
[testenv:releasenotes]
|
|
basepython = python3
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:docs]
|
|
basepython = python3
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:makemessages]
|
|
commands =
|
|
pybabel extract -F babel-django.cfg -o muranodashboard/locale/django.pot -k gettext_noop -k gettext_lazy -k ngettext_lazy:1,2 -k ugettext_noop -k ugettext_lazy -k ungettext_lazy:1,2 -k npgettext:1c,2,3 -k pgettext_lazy:1c,2 -k npgettext_lazy:1c,2,3 muranodashboard
|
|
pybabel extract -F babel-djangojs.cfg -o muranodashboard/locale/djangojs.pot -k gettext_noop -k gettext_lazy -k ngettext_lazy:1,2 -k ugettext_noop -k ugettext_lazy -k ungettext_lazy:1,2 -k npgettext:1c,2,3 -k pgettext_lazy:1c,2 -k npgettext_lazy:1c,2,3 muranodashboard
|
|
|
|
[flake8]
|
|
show-source = true
|
|
builtins = _
|
|
exclude=build,.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,horizon,settings.py,*/local/*,functional_tests
|
|
|
|
[testenv:lower-constraints]
|
|
basepython = python3
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
http://tarballs.openstack.org/heat-dashboard/heat-dashboard-master.tar.gz
|
|
|
|
[testenv:py3-dj111]
|
|
basepython = python3
|
|
commands =
|
|
pip install django>=1.11,<2
|
|
{[testenv]commands}
|