Skip to content

Commit

Permalink
Merge pull request #725 from SUSE/nogroup_test
Browse files Browse the repository at this point in the history
Add test to validate availability of nogroup/nobody
  • Loading branch information
grisu48 authored Jan 28, 2025
2 parents afb1de2 + 3049813 commit 5d5c362
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 5d5c362

Please sign in to comment.