Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip test on alma and rocky until we investigate #3047

Merged
merged 3 commits into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions tests_e2e/tests/publish_hostname/publish_hostname.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ def retry_ssh_if_connection_reset(self, command: str, use_sudo=False):
sleep(30)

def run(self):
# TODO: Investigate why hostname is not being published on Ubuntu as expected
if "ubuntu" in self._ssh_client.run_command("get_distro.py").lower():
raise TestSkipped("Known issue with hostname publishing on ubuntu. Will skip test until we continue "
# TODO: Investigate why hostname is not being published on Ubuntu, alma, and rocky as expected
distros_with_known_publishing_issues = ["ubuntu", "alma", "rocky"]
distro = self._ssh_client.run_command("get_distro.py").lower()
if any(d in distro for d in distros_with_known_publishing_issues):
raise TestSkipped("Known issue with hostname publishing on this distro. Will skip test until we continue "
"investigation.")

# Add password to VM and log. This allows us to debug with serial console if necessary
Expand Down
Loading