From: Jon Bernard Date: Thu, 27 Aug 2015 20:03:57 +0000 (-0400) Subject: Skip intermittent VMDK tests X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=0cda089b341bbf0fda03b1c27edefec1771a6c04;p=openstack-build%2Fcinder-build.git 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 --- 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):