Skip cinder volume creation test

The tempest test  is currently broken and blocks the gate.
This commit adds expectedFailure decorator around it.
So when the bug is fixed we would not forget to unskip the test.

Change-Id: Id3adbf59e116e2d73c74e782a345c7ca8d6fa41e
Related-Bug: #1701230
This commit is contained in:
Kirill Zaitsev 2017-06-29 13:16:58 +03:00
parent 2bc0fa4025
commit 7f08dbec6c
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@
import os
import testtools
import unittest
from tempest import config
@ -159,6 +160,7 @@ class TestCinderVolumes(base.BaseApplicationCatalogScenarioTest):
self.check_volume_attached('testMurano', self.volume['id'])
@unittest.expectedFailure # failing, should be fixed as part of #1701230
@testtools.testcase.attr('smoke')
@testtools.testcase.attr('scenario')
def test_deploy_app_with_volume_creation(self):