Merge pull request #742 from openstack-charmers/bug/1968008

ovn: Skip NRPE tests on Jammy
This commit is contained in:
Dmitrii Shcherbakov
2022-04-07 13:52:34 +03:00
committed by GitHub

View File

@@ -64,6 +64,9 @@ class BaseCharmOperationTest(test_utils.BaseCharmTest):
def test_nrpe_configured(self):
"""Confirm that the NRPE service check files are created."""
if self.current_release == openstack_utils.get_os_release(
'jammy_yoga'):
self.skipTest('The NRPE charm does not support Jammy yet')
units = zaza.model.get_units(self.application_name)
cmds = []
for check_name in self.nrpe_checks: