fix tests

- only leave fedora enabled
- test each package one at a time to ensure they install correctly
This commit is contained in:
Matthew Stobbs
2025-02-28 20:11:35 -07:00
parent f4744bcec9
commit ac87ba3f4c
4 changed files with 56 additions and 39 deletions

10
tests/lib.sh Normal file
View File

@@ -0,0 +1,10 @@
HOSTOS="$(uname -o)"
IMAGE=${IMAGE:-packagetest}
CONTAINER=${CONTAINER:-packagetest}
MACHINENAME=${MACHINENAME:-podman-machine-default}
# OSBUILDS=("fedora" "el9" "debian" "ubuntu")
OSBUILDS=("fedora")
function machine_state {
echo $(podman machine inspect $MACHINENAME | jq -r '.[].State')
}