How To Install podman-tests on Rocky Linux 8

In this tutorial we learn how to install podman-tests on Rocky Linux 8. podman-tests is Tests for podman

Introduction

In this tutorial we learn how to install podman-tests on Rocky Linux 8.

What is podman-tests

Tests for podman This package contains system tests for podman

We can use yum or dnf to install podman-tests on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install podman-tests.

Install podman-tests on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install podman-tests using dnf by running the following command:

sudo dnf -y install podman-tests

Install podman-tests on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install podman-tests using yum by running the following command:

sudo yum -y install podman-tests

How To Uninstall podman-tests on Rocky Linux 8

To uninstall only the podman-tests package we can use the following command:

sudo dnf remove podman-tests

podman-tests Package Contents on Rocky Linux 8

/usr/share/licenses/podman-tests
/usr/share/licenses/podman-tests/LICENSE
/usr/share/podman/test
/usr/share/podman/test/system
/usr/share/podman/test/system/000-TEMPLATE
/usr/share/podman/test/system/001-basic.bats
/usr/share/podman/test/system/005-info.bats
/usr/share/podman/test/system/010-images.bats
/usr/share/podman/test/system/015-help.bats
/usr/share/podman/test/system/020-tag.bats
/usr/share/podman/test/system/030-run.bats
/usr/share/podman/test/system/035-logs.bats
/usr/share/podman/test/system/040-ps.bats
/usr/share/podman/test/system/050-stop.bats
/usr/share/podman/test/system/055-rm.bats
/usr/share/podman/test/system/060-mount.bats
/usr/share/podman/test/system/065-cp.bats
/usr/share/podman/test/system/070-build.bats
/usr/share/podman/test/system/075-exec.bats
/usr/share/podman/test/system/080-pause.bats
/usr/share/podman/test/system/090-events.bats
/usr/share/podman/test/system/110-history.bats
/usr/share/podman/test/system/120-load.bats
/usr/share/podman/test/system/130-kill.bats
/usr/share/podman/test/system/140-diff.bats
/usr/share/podman/test/system/150-login.bats
/usr/share/podman/test/system/160-volumes.bats
/usr/share/podman/test/system/200-pod.bats
/usr/share/podman/test/system/220-healthcheck.bats
/usr/share/podman/test/system/250-systemd.bats
/usr/share/podman/test/system/260-sdnotify.bats
/usr/share/podman/test/system/300-cli-parsing.bats
/usr/share/podman/test/system/320-system-df.bats
/usr/share/podman/test/system/400-unprivileged-access.bats
/usr/share/podman/test/system/410-selinux.bats
/usr/share/podman/test/system/420-cgroups.bats
/usr/share/podman/test/system/500-networking.bats
/usr/share/podman/test/system/600-completion.bats
/usr/share/podman/test/system/README.md
/usr/share/podman/test/system/TODO.md
/usr/share/podman/test/system/build-testimage
/usr/share/podman/test/system/helpers.bash

References

Summary

In this tutorial we learn how to install podman-tests on Rocky Linux 8 using yum and dnf.