From 0cda089b341bbf0fda03b1c27edefec1771a6c04 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Thu, 27 Aug 2015 16:03:57 -0400 Subject: [PATCH] Skip intermittent VMDK tests The test 'test_create_backing_from_stream_optimized_file' is failing intermittently in the gate, which causes delays in the review process of other patches. Given the proximity to feature freeze, I think it's appropriate to temporarily disable these tests until a proper solution can be found. Change-Id: I056b64ad09bb4eb921638e2a664eda2c97daa42d Partial-Bug: #1488690 --- cinder/tests/unit/test_vmware_vmdk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cinder/tests/unit/test_vmware_vmdk.py b/cinder/tests/unit/test_vmware_vmdk.py index dcc20c420..f27031fed 100644 --- a/cinder/tests/unit/test_vmware_vmdk.py +++ b/cinder/tests/unit/test_vmware_vmdk.py @@ -1656,6 +1656,7 @@ class VMwareEsxVmdkDriverTestCase(test.TestCase): @mock.patch.object(VMDK_DRIVER, '_get_storage_profile_id') @mock.patch.object(VMDK_DRIVER, 'session') @mock.patch.object(VMDK_DRIVER, '_select_ds_for_volume') + @test.testtools.skip("SKIP until this test is removed or fixed") def test_create_backing_from_stream_optimized_file( self, select_ds, session, get_storage_profile_id, get_disk_type, vops, file_open, download_data, delete_temp_backing): @@ -2560,6 +2561,7 @@ class VMwareVcVmdkDriverTestCase(VMwareEsxVmdkDriverTestCase): @mock.patch.object(VMDK_DRIVER, '_get_storage_profile_id') @mock.patch.object(VMDK_DRIVER, 'session') @mock.patch.object(VMDK_DRIVER, '_select_ds_for_volume') + @test.testtools.skip("SKIP until this test is removed or fixed") def test_create_backing_from_stream_optimized_file( self, select_ds, session, get_storage_profile_id, get_disk_type, vops, file_open, download_data, delete_temp_backing): -- 2.45.2