summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kajinami <tkajinam@redhat.com>2022-12-05 13:40:45 +0900
committerTakashi Kajinami <tkajinam@redhat.com>2022-12-05 13:43:09 +0900
commit500201cb79b9708e6c9df7c518c32ca9e076f668 (patch)
tree09d5a17c238470a5777bc65d5404055335af4012
parentddbf9db52e7208a8e79b8656e4875251fe56be92 (diff)
downloadheat-500201cb79b9708e6c9df7c518c32ca9e076f668.tar.gz
Skip test_cancel_update_server_with_port
Currently this test consistently fails because detaching an interface does not progress, which is likely to be a libvirt issue. This change disables the test case to temporally unblock CI. Related-Bug: #1998274 Story: 2010458 Task: 46978 Change-Id: I7d9a1b2239a8406d12f3482062f4efd1d3e55d78
-rw-r--r--heat_integrationtests/functional/test_cancel_update.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/heat_integrationtests/functional/test_cancel_update.py b/heat_integrationtests/functional/test_cancel_update.py
index 68ba3f447..cb7620c5b 100644
--- a/heat_integrationtests/functional/test_cancel_update.py
+++ b/heat_integrationtests/functional/test_cancel_update.py
@@ -10,6 +10,8 @@
# License for the specific language governing permissions and limitations
# under the License.
+import testtools
+
from heat_integrationtests.functional import functional_base
@@ -46,6 +48,7 @@ resources:
if not self.conf.minimal_instance_type:
raise self.skipException("No minimal flavor configured to test.")
+ @testtools.skip('Bug 1998274')
def test_cancel_update_server_with_port(self):
parameters = {'InstanceType': self.conf.minimal_instance_type,
'ImageId': self.conf.minimal_image_ref,