From f6678699234f1883bb2b3274b13f0d3ccb057482 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Thu, 2 May 2019 09:02:14 +0000 Subject: [PATCH] Port puppet-cinder-tripleo-standalone to os_tempest Previously Tripleo validate-tempest role was used to run tempest on tripleo jobs. Recently we are moving to os_tempest (an unified role developed by openstack-ansible team). It moves the vars to os_tempest. Below is the other var changes: run_tempest: false -> to disable validate-tempest role use_os_tempest: true -> enable os_tempest tempest_whitelist -> tempest_test_whitelist tempest_plugins -> tempest_services now just the name of the service, not the plugin package name Change-Id: I4dd4f82d545cdfb4de48d6d37ee0f28f3e8c6d00 --- .zuul.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.zuul.yaml b/.zuul.yaml index 9337fc8b..c4090c27 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -19,9 +19,10 @@ TripleO standalone Job running Cinder specific Tempest tests. vars: featureset_override: - run_tempest: true - tempest_whitelist: + run_tempest: false + tempest_services: + - cinder + tempest_test_whitelist: - 'volume' - 'cinder_tempest_plugin' - tempest_plugins: - - 'python-cinder-tests-tempest' + use_os_tempest: true