-
Notifications
You must be signed in to change notification settings - Fork 22
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
Tumbleweed testsuite fixes #282
Conversation
They wouldn't be able to report the flavor anyway
The sizes are slightly larger (Newer, aka bigger busybox package) and /bin == /usr/bin so more files are in there that we need to skip
There are some unfinished bloat items in tumbleweed, raise the bar for now
2704099
to
27a218e
Compare
@@ -105,9 +105,10 @@ def test_product(auto_container): | |||
OS_VERSION != "tumbleweed", | |||
reason="product flavors only available for openSUSE", | |||
) | |||
def test_opensuse_product_flavor(auto_container): | |||
@pytest.mark.parametrize("container", CONTAINERS_WITH_ZYPPER, indirect=True) |
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.
Just out of curiosity, why is this change necessary?
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.
I tried to explain it in the commit message.
They wouldn't be able to report the flavor anyway
It is necessary because the micro (?) container doesn't have rpm(1) which causes the test to fail for unrelated reasons. There's no variable that lists containers with rpm, and we don't need it as the flavor only matters for containers that can and are running zypper.
Tumbleweed testsuite fixes
No description provided.