From 575827c9aca653bef12f530c5823a724aebd6b4d Mon Sep 17 00:00:00 2001 From: rabi Date: Fri, 26 Nov 2021 07:55:45 +0530 Subject: [PATCH] Skip aodhclient plugin test This is broken after pyparsing was bumped to 3.0.6. With python-aodhclient (kind of unmaintained it seems) CI broken, we should skip the test temporarily until [1] is merged and we've a client released with the change. [1] https://review.opendev.org/c/openstack/python-aodhclient/+/819393 Change-Id: Ib4a244087038f698eabbf2180eff3efce3a3c767 --- heat/tests/clients/test_aodh_client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/heat/tests/clients/test_aodh_client.py b/heat/tests/clients/test_aodh_client.py index 42c0614d9e..6cc6d45e90 100644 --- a/heat/tests/clients/test_aodh_client.py +++ b/heat/tests/clients/test_aodh_client.py @@ -10,6 +10,7 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. +from testtools import testcase from heat.tests import common from heat.tests import utils @@ -17,6 +18,7 @@ from heat.tests import utils class AodhClientPluginTest(common.HeatTestCase): + @testcase.skip('skipped till python-aodhclient fixed for pyparsing 3.0.6') def test_create(self): context = utils.dummy_context() plugin = context.clients.client_plugin('aodh')