python-openstackclient/.zuul.yaml
Kailun Qin d52920b387 Add network segment range command object
Add network segment range command object in support of network segment
range management.

This patch set includes documentation, unit tests and functional tests
(currently skipped unit network segment range enabled in Neutron by
default) for the following new commands:
  - "os network segment range create"
  - "os network segment range delete"
  - "os network segment range list"
  - "os network segment range set"
  - "os network segment range show"

Co-authored-by: Allain Legacy <Allain.legacy@windriver.com>

[depends on removed by dtroyer as those are all +W and 
trying to pass the gate, OSC has it's freeze dealine looming]
 Depends: https://review.openstack.org/624708
 Depends: https://review.openstack.org/624709
 Depends: https://review.openstack.org/638386

Partially-implements: blueprint network-segment-range-management
Change-Id: I335692f2db5be07c1c164f09b13f1abb80b7ba33
2019-03-07 19:39:17 +00:00

214 lines
6.8 KiB
YAML

- job:
name: osc-tox-unit-tips
parent: openstack-tox
description: |
Run unit tests for OpenStackClient with master branch of important libs.
Takes advantage of the base tox job's install-siblings feature.
required-projects:
- openstack/cliff
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/osc-lib
- openstack/python-openstackclient
vars:
tox_envlist: py27
# Set work dir to openstackclient so that if it's triggered by one of the
# other repos the tests will run in the same place
zuul_work_dir: src/git.openstack.org/openstack/python-openstackclient
- job:
name: osc-tox-py27-tips
parent: openstack-tox-py27
description: |
Run unit tests for OpenStackClient with master branch of important libs.
Takes advantage of the base tox job's install-siblings feature.
# The job only tests the latest and shouldn't be run on the stable branches
branches: ^(?!stable)
required-projects:
- openstack/cliff
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/osc-lib
- openstack/python-openstackclient
vars:
# Set work dir to openstackclient so that if it's triggered by one of the
# other repos the tests will run in the same place
zuul_work_dir: src/git.openstack.org/openstack/python-openstackclient
- job:
name: osc-tox-py35-tips
parent: openstack-tox-py35
description: |
Run unit tests for OpenStackClient with master branch of important libs.
Takes advantage of the base tox job's install-siblings feature.
# The job only tests the latest and shouldn't be run on the stable branches
branches: ^(?!stable)
required-projects:
- openstack/cliff
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/osc-lib
- openstack/python-openstackclient
vars:
# Set work dir to openstackclient so that if it's triggered by one of the
# other repos the tests will run in the same place
zuul_work_dir: src/git.openstack.org/openstack/python-openstackclient
- job:
name: osc-functional-devstack-base
parent: devstack-tox-functional
description: |
Base job for devstack-based functional tests
timeout: 9000
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
required-projects:
- openstack/python-openstackclient
vars:
devstack_localrc:
LIBS_FROM_GIT: python-openstackclient
# NOTE(dtroyer): OSC needs to support Image v1 for a while yet so re-enable
GLANCE_V1_ENABLED: true
# NOTE(dtroyer): Functional tests need a bit more volume headroom
VOLUME_BACKING_FILE_SIZE: 20G
devstack_local_conf:
post-config:
$CINDER_CONF:
DEFAULT:
# NOTE(dtroyer): OSC needs to support Volume v1 for a while yet so re-enable
enable_v1_api: true
devstack_services:
ceilometer-acentral: false
ceilometer-acompute: false
ceilometer-alarm-evaluator: false
ceilometer-alarm-notifier: false
ceilometer-anotification: false
ceilometer-api: false
ceilometer-collector: false
s-account: true
s-container: true
s-object: true
s-proxy: true
osc_environment:
PYTHONUNBUFFERED: 'true'
OS_CLOUD: devstack-admin
zuul_work_dir: src/git.openstack.org/openstack/python-openstackclient
# The Neutron bits are here rather than in osc-functional-devstack-base to
# simplify removing Neutron in the osc-functional-devstack-n-net job.
- job:
name: osc-functional-devstack
parent: osc-functional-devstack-base
timeout: 7800
vars:
devstack_plugins:
# NOTE(amotoki): Some neutron features are enabled by devstack plugin
neutron: https://git.openstack.org/openstack/neutron
devstack_services:
neutron-network-segment-range: true
neutron-segments: true
q-metering: true
q-qos: true
tox_envlist: functional
- job:
name: osc-functional-devstack-n-net
parent: osc-functional-devstack-base
timeout: 7800
vars:
devstack_localrc:
FLAT_INTERFACE: br_flat
PUBLIC_INTERFACE: br_pub
devstack_services:
n-cell: true
n-net: true
neutron: false
neutron-segments: false
q-agt: false
q-dhcp: false
q-l3: false
q-meta: false
q-metering: false
q-qos: false
q-svc: false
tox_envlist: functional
- job:
name: osc-functional-devstack-tips
parent: osc-functional-devstack
timeout: 7800
required-projects:
- openstack/cliff
- openstack/keystoneauth
- openstack/openstacksdk
- openstack/os-client-config
- openstack/osc-lib
- openstack/python-openstackclient
vars:
devstack_localrc:
USE_PYTHON3: true
LIBS_FROM_GIT: python-openstackclient,openstacksdk,osc-lib,os-client-config
# This is insufficient, but leaving it here as a reminder of what may
# someday be all we need to make this work
# disable_python3_package swift
DISABLED_PYTHON3_PACKAGES: swift
devstack_services:
# Swift is not ready for python3 yet: At a minimum keystonemiddleware needs
# to be installed in the py2 env, there are probably other things too...
s-account: false
s-container: false
s-object: false
s-proxy: false
tox_envlist: functional
tox_install_siblings: true
- project-template:
name: osc-tox-unit-tips
check:
jobs:
- osc-tox-py27-tips
- osc-tox-py35-tips
gate:
jobs:
- osc-tox-py27-tips
- osc-tox-py35-tips
- project:
templates:
- openstackclient-plugin-jobs
- osc-tox-unit-tips
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
- lib-forward-testing
- lib-forward-testing-python3
check:
jobs:
- osc-functional-devstack
# - osc-functional-devstack-n-net:
# voting: false
# # The job testing nova-network no longer works before Pike, and
# # should be disabled until the New Way of testing against old clouds
# # is ready and backported
# branches: ^(?!stable/(newton|ocata)).*$
- osc-functional-devstack-tips:
# The functional-tips job only tests the latest and shouldn't be run
# on the stable branches
branches: ^(?!stable)
gate:
jobs:
- osc-functional-devstack