Tempest and master and neutron-tempest-plugin queens tag is not compatible for stable/queens testing. More details on https://bugs.launchpad.net/tempest/+bug/1859988 Also py2 drop will start required the python 3.6 version for Tempest master tests. Because stable/queens is EM, let's pin the Tempest for its tesing instead of putting more effort to make Tempest master run-able. Tempest 21.0.0 is supported Tag for Queens so let's use that for Queens testing instead of Tempest master. Closes-Bug: 1859988 [1] https://docs.openstack.org/tempest/latest/stable_branch_support_policy.html Change-Id: Id4861830c46867b313a5a705fc4722ac13471777
25 lines
840 B
Bash
Executable File
25 lines
840 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# 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.
|
|
|
|
|
|
echo "Ensuring we don't have crazy refs"
|
|
|
|
REFS=`grep BRANCH stackrc | grep -v 'TARGET_BRANCH' | grep -v 'NOVNC_BRANCH' | grep -v TEMPEST_BRANCH`
|
|
rc=$?
|
|
if [[ $rc -eq 0 ]]; then
|
|
echo "Branch defaults must be one of the *TARGET_BRANCH values. Found:"
|
|
echo $REFS
|
|
exit 1
|
|
fi
|