From ceed8a44915c87f1620b6894fe86306a624613d6 Mon Sep 17 00:00:00 2001 From: Luigi Toscano Date: Wed, 29 Mar 2023 16:25:57 +0200 Subject: [PATCH] Fix pre-wallaby branches: force an older tempest env Since Id02221df0d6180519751c63e890851bd59fdafa0, in order to fix lp#2004780, the job which all jobs defined here inherit from uses the 'integrated-full' tox environment, which doesn't exist on older branches. Those should use the 'full' tox environment instead. As this devstack plugin is not branched, as long as there are jobs which use it on older branches, we should make sure to not break them. This broke a few other jobs, so use those fixes as examples: (see I5f1c4de0e7ec0cc6d7f6ba7d7aa78aabc931d23e ) Related-Bug: #2007986 Change-Id: Iec4f5adc5bebb811e1ef44208a98d7403d1e8c01 --- .zuul.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.zuul.yaml b/.zuul.yaml index f938ffb..de88bd7 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -100,15 +100,21 @@ parent: devstack-plugin-nfs-tempest-full nodeset: openstack-single-node-focal override-checkout: stable/wallaby + vars: + tox_envlist: full - job: name: devstack-plugin-nfs-tempest-full-victoria parent: devstack-plugin-nfs-tempest-full nodeset: openstack-single-node-focal override-checkout: stable/victoria + vars: + tox_envlist: full - job: name: devstack-plugin-nfs-tempest-full-ussuri parent: devstack-plugin-nfs-tempest-full nodeset: openstack-single-node-bionic override-checkout: stable/ussuri + vars: + tox_envlist: full