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
This commit is contained in:
Stan Lagun 2016-11-20 20:27:23 -08:00 committed by Victor Ryzhenkin
parent a6b3484083
commit 32977d9e3e
1 changed files with 0 additions and 2 deletions

View File

@ -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)