diff options
author | Wojciech Dec <wdec@cisco.com> | 2016-08-16 19:27:01 +0200 |
---|---|---|
committer | Wojciech Dec <wdec@cisco.com> | 2016-08-16 19:29:27 +0200 |
commit | c3b2c2a9a22bac5cf17813c589444d3abebaa23b (patch) | |
tree | 68c2fc0cb8c32cbb8fabf69ac81e1e0ba50cff2a /networking-odl/devstack/devstackgaterc | |
parent | 3285c8e93ea59d98b392591ef6dfa5b1de3bb92d (diff) |
Adding Mitaka networking-old module with the ODL topology based port
binding resolution mechanism from https://review.openstack.org/333186
Change-Id: I10d400aac9bb639c146527f0f93e6925cb74d9de
Signed-off-by: Wojciech Dec <wdec@cisco.com>
Diffstat (limited to 'networking-odl/devstack/devstackgaterc')
-rw-r--r-- | networking-odl/devstack/devstackgaterc | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/networking-odl/devstack/devstackgaterc b/networking-odl/devstack/devstackgaterc new file mode 100644 index 0000000..474cdc0 --- /dev/null +++ b/networking-odl/devstack/devstackgaterc @@ -0,0 +1,62 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +# +# This script is executed in the OpenStack CI job that runs DevStack + tempest. +# You can find the CI job configuration here: +# +# http://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs/networking-odl.yaml +# + +export OVERRIDE_ENABLED_SERVICES=q-svc,q-dhcp,q-meta,quantum,tempest,n-api,n-cond,n-cpu,n-crt,n-obj,n-sch,g-api,g-reg,mysql,rabbit,key,dstat + +# By default this variable is set to br100, and it is used to determine the value of PUBLIC_INTERFACE. +# PUBLIC_INTERFACE is wired to PUBLIC_BRIDGE to route traffic externally. Since, we don't currently +# need to route external traffic in the gate (no multi-node testing), this can be unset. +unset PUBLIC_INTERFACE + +# Begin list of exclusions. +r="^(?!.*" + +# exclude the slow tag (part of the default for 'full') +r="$r(?:.*\[.*\bslow\b.*\])" + +# exclude things that just aren't enabled: +r="$r|(?:tempest\.api\.network\.admin\.test_quotas\.QuotasTest\.test_lbaas_quotas.*)" +r="$r|(?:tempest\.api\.network\.test_load_balancer.*)" +r="$r|(?:tempest\.scenario\.test_load_balancer.*)" +r="$r|(?:tempest\.scenario\.test_network_basic_ops.*)" +r="$r|(?:tempest\.scenario\.test_security_groups_basic_ops.*)" +r="$r|(?:tempest\.api\.network\.admin\.test_load_balancer.*)" +r="$r|(?:tempest\.api\.network\.admin\.test_lbaas.*)" +r="$r|(?:tempest\.api\.network\.test_fwaas_extensions.*)" +r="$r|(?:tempest\.api\.network\.test_vpnaas_extensions.*)" +r="$r|(?:tempest\.api\.network\.test_metering_extensions.*)" +r="$r|(?:tempest\.thirdparty\.boto\.test_s3.*)" + +# exclude stuff we're less likely to break because i'm impatient +r="$r|(?:tempest\.api\.identity.*)" +r="$r|(?:tempest\.api\.image.*)" +r="$r|(?:tempest\.api\.volume.*)" + +# Current list of failing tests that need to be triaged, have bugs filed, and +# fixed as appropriate. +# (none) + +# End list of exclusions. +r="$r)" + +# only run tempest.api/scenario/thirdparty tests (part of the default for 'full') +r="$r(tempest\.(api|scenario|thirdparty)).*$" + +export DEVSTACK_GATE_TEMPEST_REGEX="$r" +enable_service "$OVERRIDE_ENABLED_SERVICES" |