diff --git a/.github/integration-test.py b/.github/integration-test.py index a756711..25af580 100755 --- a/.github/integration-test.py +++ b/.github/integration-test.py @@ -82,8 +82,6 @@ def run_systemd_image(image_name, container_name, bootstrap_pip_spec): # If this is changed all docs references to the required memory must be changed too. "--memory=900m", ] - # if container_runtime() != "podman": - # cmd.append("--mount=type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup") if bootstrap_pip_spec: cmd.append("-e") diff --git a/integration-tests/test_install.py b/integration-tests/test_install.py index 4dfa9eb..1391ddd 100644 --- a/integration-tests/test_install.py +++ b/integration-tests/test_install.py @@ -48,9 +48,6 @@ def test_groups_exist(group): def debug_uid_gid(): return subprocess.check_output("id").decode() - # return ( - # f"uid={os.getuid()} gid={os.getgid()} euid={os.geteuid()} egid={os.getegid()}" - # ) def permissions_test(group, path, *, readable=None, writable=None, dirs_only=False):