From 32977d9e3e05bc912294f56ecc78d0f5c0bf81ec Mon Sep 17 00:00:00 2001 From: Stan Lagun Date: Sun, 20 Nov 2016 20:27:23 -0800 Subject: [PATCH] Don't purge random stacks Cinder tests were deleting all the Heat stacks in their teardown. This caused strange deployments errors when the tests were executed cocurrently because stacks from other tests were deleted and partially recreated in concurrent deployments which caused different consistency errors. Change-Id: I1670fa4613914c463328c3aa45c3a385efcc2a8c Closes-Bug: #1643936 --- .../tests/scenario/application_catalog/test_cinder_volumes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py b/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py index c4b3c13..7eb3ccc 100644 --- a/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py +++ b/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py @@ -49,7 +49,6 @@ class TestCinderVolumes(base.BaseApplicationCatalogScenarioTest): @classmethod def resource_cleanup(cls): - cls.purge_stacks() cls.delete_volume(cls.volume) cls.client.delete_package(cls.package['id']) os.remove(cls.abs_archive_path) @@ -368,7 +367,6 @@ class TestCinderVolumeIsolatedAdmin( @classmethod def resource_cleanup(cls): - cls.purge_stacks() cls.delete_volume(cls.volume) cls.client.delete_package(cls.package['id']) os.remove(cls.abs_archive_path)