Skip to content

Commit

Permalink
Add test to validate availability of nogroup/nobody
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkmueller committed Jan 14, 2025
1 parent 2efdc95 commit ed73471
Showing 1 changed file with 9 additions and 0 deletions.
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):
"""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

0 comments on commit ed73471

Please sign in to comment.