diff options
| author | Ivan Kolodyazhny <e0ne@e0ne.info> | 2017-03-10 16:56:14 +0200 |
|---|---|---|
| committer | Ivan Kolodyazhny <e0ne@e0ne.info> | 2017-03-10 16:56:14 +0200 |
| commit | c5059b418760d38e4634e764a8a987f948e875ac (patch) | |
| tree | e49b931e62595045101a56246fef99ebaf5b3053 /cinderclient/tests/functional | |
| parent | 5badc3ef3171fa7efc658aabbb2c427e69c1146d (diff) | |
| download | python-cinderclient-c5059b418760d38e4634e764a8a987f948e875ac.tar.gz | |
Disable functional tests with multiattach
LVM driver doesn't support mulltiattach now. That's why this test fails
on gates. We have to disable it until multiattach will be supported.
Change-Id: I690982dfa81a566d1632ebe81c54f5596316b02f
Diffstat (limited to 'cinderclient/tests/functional')
| -rw-r--r-- | cinderclient/tests/functional/test_volume_create_cli.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cinderclient/tests/functional/test_volume_create_cli.py b/cinderclient/tests/functional/test_volume_create_cli.py index 864a8eb..2795b78 100644 --- a/cinderclient/tests/functional/test_volume_create_cli.py +++ b/cinderclient/tests/functional/test_volume_create_cli.py @@ -10,6 +10,8 @@ # License for the specific language governing permissions and limitations # under the License. +import unittest + import six import ddt @@ -89,6 +91,7 @@ class CinderVolumeTestsWithParameters(base.ClientTestBase): format(volume_description)) self.assertEqual(volume_description, volume['description']) + @unittest.skip("Skip until multiattach will be supported") def test_volume_create_multiattach(self): """Test steps: |
