From 310428b5cdfdd7fd44a84e4f3aa09f2c2fe0ec5b Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Sat, 26 Oct 2024 11:34:55 +0200 Subject: [PATCH] CI: Skip test_ntp_clock_synchronized on Ubuntu 24.04 This test often fails on Ubuntu 24.04 [1], making it difficult to merge patches. Skip this test until we force time synchronisation. [1] https://zuul.opendev.org/t/openstack/builds?job_name=kayobe-overcloud-host-configure-ubuntu-noble&project=openstack/kayobe Change-Id: I222ad8e7ed66cde1f3fb225fa5cdc30c7ed80c99 --- .../tests/test_overcloud_host_configure.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/playbooks/kayobe-overcloud-host-configure-base/tests/test_overcloud_host_configure.py b/playbooks/kayobe-overcloud-host-configure-base/tests/test_overcloud_host_configure.py index e0ea96727..ccc46fd3e 100644 --- a/playbooks/kayobe-overcloud-host-configure-base/tests/test_overcloud_host_configure.py +++ b/playbooks/kayobe-overcloud-host-configure-base/tests/test_overcloud_host_configure.py @@ -25,6 +25,12 @@ def _is_dnf_mirror(): return info == 'centos' +def _is_ubuntu_noble(): + name = distro.name() + version = distro.version() + return name == 'Ubuntu' and version == 24.04 + + def test_network_ethernet(host): interface = host.interface('dummy2') assert interface.exists @@ -198,6 +204,9 @@ def test_ntp_non_default_time_server(host): assert "time.cloudflare.com" in chrony_config.content_string +# TODO(priteau): Remove once we force time sync +@pytest.mark.skipif(_is_ubuntu_noble(), + reason="Clock often fails to synchronize on Ubuntu Noble") def test_ntp_clock_synchronized(host): # Tests that the clock is synchronized status_output = host.check_output("timedatectl status")