Use minimal image and flavor for base scenario test

This test case can use cirros, and does not require additional
features.

Change-Id: I2eb569fc2b4a9ff01b979cd631ec58d2ac6e72ad
This commit is contained in:
Takashi Kajinami 2023-09-22 14:32:23 +09:00
parent 26f59bd29a
commit 449bc1029e
1 changed files with 6 additions and 6 deletions

View File

@ -21,10 +21,10 @@ class BasicResourcesTest(scenario_base.ScenarioTestsBase):
def setUp(self):
super(BasicResourcesTest, self).setUp()
if not self.conf.image_ref:
raise self.skipException("No image configured to test")
if not self.conf.instance_type:
raise self.skipException("No flavor configured to test")
if not self.conf.minimal_image_ref:
raise self.skipException("No minimal image configured to test")
if not self.conf.minimal_instance_type:
raise self.skipException("No minimal flavor configured to test")
def check_stack(self):
sid = self.stack_identifier
@ -55,8 +55,8 @@ class BasicResourcesTest(scenario_base.ScenarioTestsBase):
self.private_net_name = test.rand_name('heat-net')
parameters = {
'key_name': test.rand_name('heat-key'),
'flavor': self.conf.instance_type,
'image': self.conf.image_ref,
'flavor': self.conf.minimal_instance_type,
'image': self.conf.minimal_image_ref,
'vol_size': self.conf.volume_size,
'private_net_name': self.private_net_name
}