-
Notifications
You must be signed in to change notification settings - Fork 23
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
Temporarily skip startup test on ppc64le #646
Conversation
tests/test_init.py
Outdated
@@ -44,6 +44,10 @@ def test_systemd_no_udev_present(self, auto_container): | |||
def test_systemd_boottime(self, auto_container): | |||
"""Ensure the container startup time is below 5 seconds""" | |||
|
|||
# Temporary workaround: While using emulated workers, the startup time test doesn't make sense.' | |||
if auto_container.connection.system_info.arch == "ppc64le": | |||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use pytest.skip()
with a reason why here
Also, please add a giant FIXME
somewhere
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this FIXME have an issue so we dont forget about it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to worker unavailability we need to run ppc64le on emulated workers at the moment where the startup times are always larger than the threshold. Therefore there is no point in running this test at all on ppc64le at the moment.
Due to worker unavailability we need to run ppc64le on emulated workers at the moment where the startup times are always larger than the threshold. Therefore there is no point in running this test at all on ppc64le at the moment.
[CI:TOXENVS] init