Skip failing test test_fix_argument_yes

test_fix_argument_yes failure is not fixed by
https://review.opendev.org/c/openstack/tempest/+/779555

Let's skip this until we find the root cause

Related-Bug: #1918316
Change-Id: I73b8dcdb03f042bfd86c9517aa945f8bfd835150
This commit is contained in:
Ghanshyam Mann 2021-03-10 10:09:14 -06:00
parent 218c2f258f
commit c76e186d86
1 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ from unittest import mock
import fixtures
from tempest.lib.cmd import check_uuid
from tempest.lib import decorators
from tempest.tests import base
@ -50,6 +51,7 @@ class TestCLInterface(base.TestCase):
with open(tests_file, "r") as f:
self.assertTrue(TestCLInterface.CODE == f.read())
@decorators.skip_because(bug='1918316')
def test_fix_argument_yes(self):
temp_dir = self.useFixture(fixtures.TempDir(rootdir="."))
tests_file = self.create_tests_file(temp_dir.path)