Compare commits
9 Commits
8.1.0
...
queens-eol
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
394d531a26 | ||
|
|
44209a4bf0 | ||
|
|
c3de7daa6b | ||
|
|
10ef66abca | ||
|
|
4011be8328 | ||
|
|
aa9188f0da | ||
|
|
be6a4b8bed | ||
| 0e421b2729 | |||
| 2e79b4a94f |
@@ -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
47
.zuul.yaml
Normal 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$
|
||||
|
||||
@@ -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', '')
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1 +1 @@
|
||||
enable_plugin neutron-vpnaas git://git.openstack.org/openstack/neutron-vpnaas
|
||||
enable_plugin neutron-vpnaas https://git.openstack.org/openstack/neutron-vpnaas
|
||||
|
||||
@@ -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
|
||||
|
||||
2
tox.ini
2
tox.ini
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user