From 07be796a1d5ebf3864679b49d5219f946c65e10a Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Sat, 23 Mar 2019 13:43:58 +0100 Subject: Set max microversion in all tempest confs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Else refstack_defcore fails due to the skipped test [1] [1] https://artifacts.opnfv.org/logs/functest/ericsson-virtual1/2019-03-22_22-18-26/refstack_defcore/tempest-report.html Change-Id: I33accdf06154d784042c7ddc8dac83f902433770 Signed-off-by: Cédric Ollivier --- jjb/functest/functest-alpine.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index 796da8d6c..18fec99ad 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -227,6 +227,26 @@ volume-feature-enabled: EOF ;; esac +case ${BRANCH} in +master) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: latest +EOF + ;; +stable/hunter) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: 2.65 +EOF + ;; +stable/gambia) + cat << EOF >> "${tempest_conf_yaml}" +compute: + max_microversion: 2.60 +EOF + ;; +esac echo "tempest_conf.yaml:" && cat "${tempest_conf_yaml}" volumes="${images_vol} ${results_vol} ${sshkey_vol} ${libvirt_vol} \ -- cgit 1.2.3-korg