Upgrading for stable/rocky branch.

* Updated integration tests argument in 'run_tests.sh'.
    * Updated 'test-requirements.txt' w.r.t. stable/rocky branch.
    * Updated zuul jobs w.r.t stable/rocky constraints.
    * Added 'django-appconf<=1.0.3' library for py27 compatibility.
    * Added 'wheel' library to avoid "invalid command 'bdist_wheel'"
      error.

Change-Id: I9e1cb06908c0739432518db8b683666dc8b4c841
This commit is contained in:
Shyam Singh 2020-06-11 20:03:21 +05:30
parent 509d27eb55
commit 7d04600361
12 changed files with 62 additions and 35 deletions

View File

@ -3,23 +3,45 @@
templates: templates:
- openstack-python-jobs - openstack-python-jobs
- publish-to-pypi - publish-to-pypi
# REVISIT: In the jobs below, the required-projects clause is needed on
# the master branch to select the correct version of the requirements
# repository. Otherwise, the master version will be used. It can be
# eliminated on the stable branches, and on the master branch once this
# repository's master branch is based on the neutron repository's master
# branch.
check: check:
jobs: jobs:
- openstack-tox-pep8: - openstack-tox-pep8:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- openstack-tox-py27: - openstack-tox-py27:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- openstack-tox-py35: - openstack-tox-py35:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- test-release-openstack: - test-release-openstack:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
gate: gate:
jobs: jobs:
- openstack-tox-pep8: - openstack-tox-pep8:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- openstack-tox-py27: - openstack-tox-py27:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- openstack-tox-py35: - openstack-tox-py35:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky
- test-release-openstack: - test-release-openstack:
nodeset: ubuntu-xenial required-projects:
- name: openstack/requirements
override-checkout: stable/rocky

View File

@ -11,6 +11,7 @@
# under the License. # under the License.
from __future__ import absolute_import from __future__ import absolute_import
import logging import logging
from django.conf import settings from django.conf import settings

View File

@ -26,3 +26,6 @@ class TestGbpui(base.TestCase):
def test_something(self): def test_something(self):
pass pass
def __hash__(self):
return id(self)

View File

@ -26,3 +26,6 @@ class TestGbpui(base.TestCase):
def test_something(self): def test_something(self):
pass pass
def __hash__(self):
return id(self)

View File

@ -11,6 +11,9 @@
# under the License. # under the License.
import json import json
import tables as ns_tables
import yaml import yaml
from django.contrib.staticfiles.templatetags.staticfiles import static from django.contrib.staticfiles.templatetags.staticfiles import static
@ -24,8 +27,6 @@ from horizon import tabs
from gbpui import client from gbpui import client
from gbpui import column_filters as gfilters from gbpui import column_filters as gfilters
import tables as ns_tables
class ServiceChainSpecTab(tabs.TableTab): class ServiceChainSpecTab(tabs.TableTab):
name = _("Service Chain Specs") name = _("Service Chain Specs")

View File

@ -9,6 +9,8 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import logging
import re import re
from django.conf import settings from django.conf import settings
@ -26,8 +28,6 @@ from gbpui import client
from netaddr import IPAddress from netaddr import IPAddress
from netaddr import IPNetwork from netaddr import IPNetwork
import logging
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)

View File

@ -10,6 +10,10 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import time
import tables
from django.core.urlresolvers import reverse_lazy from django.core.urlresolvers import reverse_lazy
from django.utils.translation import ugettext_lazy as _ from django.utils.translation import ugettext_lazy as _
@ -22,10 +26,6 @@ from openstack_dashboard.dashboards.project.instances import tables as itables
from gbpui import client from gbpui import client
from gbpui import column_filters as gfilters from gbpui import column_filters as gfilters
import tables
import time
PTGsTable = tables.PTGsTable PTGsTable = tables.PTGsTable
External_PTGsTable = tables.ExternalPTGsTable External_PTGsTable = tables.ExternalPTGsTable

View File

@ -331,7 +331,7 @@ function run_tests {
fi fi
if [ $with_selenium -eq 0 -a $integration -eq 0 ]; then if [ $with_selenium -eq 0 -a $integration -eq 0 ]; then
testopts="$testopts --exclude-dir=gbpui/openstack_dashboard/test/integration_tests" testopts="$testopts --exclude-tag integration"
fi fi
if [ $selenium_headless -eq 1 ]; then if [ $selenium_headless -eq 1 ]; then
@ -554,4 +554,4 @@ if [ $runserver -eq 1 ]; then
fi fi
# Full test suite # Full test suite
run_tests || exit run_tests || exit

View File

@ -44,3 +44,6 @@ input_file = gbpui/locale/group-based-policy-ui.pot
keywords = _ gettext ngettext l_ lazy_gettext keywords = _ gettext ngettext l_ lazy_gettext
mapping_file = babel.cfg mapping_file = babel.cfg
output_file = gbpui/locale/group-based-policy-ui.pot output_file = gbpui/locale/group-based-policy-ui.pot
[flake8]
import-order-style = pep8

View File

@ -25,5 +25,5 @@ except ImportError:
pass pass
setuptools.setup( setuptools.setup(
setup_requires=['pbr>=1.8'], setup_requires=['pbr>=2.0.0'],
pbr=True) pbr=True)

View File

@ -7,26 +7,19 @@
# be installed in a specific order. # be installed in a specific order.
# #
# Hacking should appear first in case something else depends on pep8 # Hacking should appear first in case something else depends on pep8
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
-e git://github.com/openstack/horizon.git@stable/queens#egg=horizon # Replacing Horizon git URL reference as stable/rocky constraints are applied.
hacking<0.11,>=0.10.0 horizon
# #
cmd2<0.9.0 bandit>=1.4.0 # Apache-2.0
django-appconf<=1.0.3
coverage!=4.4,>=4.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0
django-nose>=1.4.4 # BSD flake8-import-order==0.12 # LGPLv3
mock>=2.0 # BSD mock>=2.0 # BSD
mox3>=0.20.0 # Apache-2.0 mox3>=0.20.0 # Apache-2.0
nodeenv>=0.9.4 # BSD nodeenv>=0.9.4 # BSD
nose>=1.3.7 # LGPL
nose-exclude>=0.3.0 # LGPL
nosehtmloutput>=0.0.3 # Apache-2.0
nosexcover>=1.0.10 # BSD
openstack.nose-plugin>=0.7 # Apache-2.0
openstackdocstheme>=1.18.1 # Apache-2.0
reno>=2.5.0 # Apache-2.0
requests>=2.14.2 # Apache-2.0 requests>=2.14.2 # Apache-2.0
selenium>=2.50.1 # Apache-2.0 selenium>=2.50.1 # Apache-2.0
sphinx>=1.6.2,!=1.6.6 # BSD
testtools>=2.2.0 # MIT testtools>=2.2.0 # MIT
# This also needs xvfb library installed on your OS # This also needs xvfb library installed on your OS
xvfbwrapper>=0.1.3 #license: MIT xvfbwrapper>=0.1.3 #license: MIT

View File

@ -4,7 +4,6 @@ minversion = 1.6
skipsdist = True skipsdist = True
[testenv] [testenv]
basepython = python3
usedevelop = True usedevelop = True
install_command = pip install -U {opts} {packages} install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
@ -16,8 +15,10 @@ setenv = VIRTUAL_ENV={envdir}
# Note the hash seed is set to 0 until gbpui can be tested with a # Note the hash seed is set to 0 until gbpui can be tested with a
# random hash seed successfully. # random hash seed successfully.
PYTHONHASHSEED=0 PYTHONHASHSEED=0
deps = -r{toxinidir}/requirements.txt deps =
-r{toxinidir}/test-requirements.txt -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/rocky}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = /bin/bash run_tests.sh -N --no-pep8 {posargs} commands = /bin/bash run_tests.sh -N --no-pep8 {posargs}
[testenv:pep8] [testenv:pep8]