Compare commits

...

9 Commits

Author SHA1 Message Date
OpenDev Sysadmins
394d531a26 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:44:48 +00:00
Ian Wienand
44209a4bf0 Replace openstack.org git:// URLs with https://
This is a mechanically generated change to replace openstack.org
git:// URLs with https:// equivalents.

This is in aid of a planned future move of the git hosting
infrastructure to a self-hosted instance of gitea (https://gitea.io),
which does not support the git wire protocol at this stage.

This update should result in no functional change.

For more information see the thread at

 http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html

Change-Id: I82784b8fab6a889e33fc9618f8754b83443ff3f3
2019-03-24 20:35:54 +00:00
Zuul
c3de7daa6b Merge "import zuul job settings from project-config" into stable/queens 2018-09-11 19:54:58 +00:00
Doug Hellmann
10ef66abca import zuul job settings from project-config
This is a mechanically generated patch to complete step 1 of moving
the zuul job settings out of project-config and into each project
repository.

Because there will be a separate patch on each branch, the branch
specifiers for branch-specific jobs have been removed.

Because this patch is generated by a script, there may be some
cosmetic changes to the layout of the YAML file(s) as the contents are
normalized.

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

Depends-On: https://review.openstack.org/#/c/598539/
Change-Id: Idd8bc517a6aae259b5a33185ed028bca86d09080
Story: #2002586
Task: #24314
2018-09-04 21:57:48 +00:00
Bernard Cafarelli
4011be8328 Fix pep8 error
pycodestyle 2.4.0 which is updated along with pep8
introduces new checks and they hit neutronclient.

Additional stable-specific fix in cliff_sphinxext.py (removed in master)

Change-Id: Ic417aee3239c46f1e989c50b9814adfd75cff175
(cherry picked from commit 19d0609888)
2018-08-31 13:05:32 +02:00
Zuul
aa9188f0da Merge "Update UPPER_CONSTRAINTS_FILE for stable/queens" into stable/queens 2018-03-16 04:10:00 +00:00
OpenStack Proposal Bot
be6a4b8bed Updated from global requirements
Change-Id: I849275dcf1ab319bc1321b498ad4c3cdff2d90e2
2018-02-13 02:00:13 +00:00
0e421b2729 Update UPPER_CONSTRAINTS_FILE for stable/queens
Change-Id: I142cfd6f56d73b2075a72ab741c98daa35c927c0
2018-01-26 00:20:37 +00:00
2e79b4a94f Update .gitreview for stable/queens
Change-Id: Ib7bb04dee44b5d725a5e25b31f9a36aeaf1cf2c7
2018-01-26 00:20:34 +00:00
8 changed files with 59 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
[gerrit]
host=review.openstack.org
host=review.opendev.org
port=29418
project=openstack/python-neutronclient.git
defaultbranch=stable/queens

47
.zuul.yaml Normal file
View File

@@ -0,0 +1,47 @@
- project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- publish-openstack-sphinx-docs
- check-requirements
- lib-forward-testing
- release-notes-jobs
- openstackclient-plugin-jobs
check:
jobs:
- legacy-neutronclient-test-dsvm-functional:
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^neutron/locale/.*$
- ^releasenotes/.*$
- legacy-neutronclient-test-dsvm-functional-adv-svcs:
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^neutron/locale/.*$
- ^releasenotes/.*$
gate:
jobs:
- legacy-neutronclient-test-dsvm-functional:
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^neutron/locale/.*$
- ^releasenotes/.*$
- legacy-neutronclient-test-dsvm-functional-adv-svcs:
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^neutron/locale/.*$
- ^releasenotes/.*$
post:
jobs:
- openstack-tox-cover
experimental:
jobs:
- legacy-grenade-dsvm-neutron-libs:
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$

View File

@@ -269,8 +269,8 @@ class AutoprogramCliffDirective(rst.Directive):
self.env = self.state.document.settings.env
command_pattern = self.options.get('command')
application_name = (self.options.get('application')
or self.env.config.autoprogram_cliff_application)
application_name = (self.options.get('application') or
self.env.config.autoprogram_cliff_application)
global_ignored = self.env.config.autoprogram_cliff_ignored
local_ignored = self.options.get('ignored', '')
@@ -360,8 +360,8 @@ class CliffAppDirective(rst.Directive):
app_arguments = self.options.get('arguments', '').split()
cliff_app = cliff_app_class(*app_arguments)
application_name = (self.options.get('application')
or self.env.config.autoprogram_cliff_application)
application_name = (self.options.get('application') or
self.env.config.autoprogram_cliff_application)
global_ignored = self.env.config.autoprogram_cliff_ignored
local_ignored = self.options.get('ignored', '')

View File

@@ -720,8 +720,8 @@ class ListCommand(NeutronCommand, lister.Lister):
if parsed_args.formatter == 'table':
formatters = self._formatters
elif (parsed_args.formatter == 'csv'
and hasattr(self, '_formatters_csv')):
elif (parsed_args.formatter == 'csv' and
hasattr(self, '_formatters_csv')):
formatters = self._formatters_csv
else:
# For other formatters, we use raw value returned from neutron

View File

@@ -1,2 +1,2 @@
enable_plugin neutron-fwaas git://git.openstack.org/openstack/neutron-fwaas
enable_plugin neutron-fwaas https://git.openstack.org/openstack/neutron-fwaas
enable_service q-fwaas

View File

@@ -1 +1 @@
enable_plugin neutron-vpnaas git://git.openstack.org/openstack/neutron-vpnaas
enable_plugin neutron-vpnaas https://git.openstack.org/openstack/neutron-vpnaas

View File

@@ -8,7 +8,7 @@ fixtures>=3.0.0 # Apache-2.0/BSD
flake8-import-order==0.12 # LGPLv3
mox3>=0.20.0 # Apache-2.0
mock>=2.0.0 # BSD
openstackdocstheme>=1.17.0 # Apache-2.0
openstackdocstheme>=1.18.1 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0
osprofiler>=1.4.0 # Apache-2.0
python-openstackclient>=3.12.0 # Apache-2.0

View File

@@ -12,7 +12,7 @@ setenv = VIRTUAL_ENV={envdir}
PYTHONWARNINGS=default::DeprecationWarning
usedevelop = True
install_command = pip install {opts} {packages}
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
# Delete bytecodes from normal directories before running tests.