Added missing cinder cleanup step to snapstack test.

Change-Id: Iefcd89318d4f257e03d4bb956f5ddba7d1c71a17
This commit is contained in:
Pete Vander Giessen 2017-08-17 20:37:17 +00:00
parent 7a98693095
commit 0801d61fc1
1 changed files with 5 additions and 1 deletions

View File

@ -24,5 +24,9 @@ class SnapstackTest(unittest.TestCase):
],
snap_store=False)
plan = Plan(tests=[cinder])
cinder_cleanup = Step(
script_loc='./tests/',
scripts=['cinder_cleanup.sh'])
plan = Plan(tests=[cinder], test_cleanup=[cinder_cleanup])
plan.run()