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

Add test to validate availability of nogroup/nobody #725

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@ def test_iconv_working(auto_container):
)


@pytest.mark.skipif(
OS_VERSION in ("15.3", "15.4", "15.5"),
reason="unfixed in LTSS codestreams",
)
def test_group_nobody_working(auto_container):
dirkmueller marked this conversation as resolved.
Show resolved Hide resolved
"""Test that nobody group is available in the container (bsc#1212118)."""
assert auto_container.connection.check_output("getent group nobody")


@pytest.mark.skipif(
not PODMAN_SELECTED,
reason="docker size reporting is dependent on underlying filesystem",
Expand Down
Loading