tmt: comment out the cmd which access to quay.io

It's a know issue and already has workaround
https://github.com/containers/podman/issues/16973

Comment out the line to not let it block the CI pipeline, since this
part is just copied from a demo template.

Signed-off-by: Wei Shi <wshi@redhat.com>
This commit is contained in:
Wei Shi 2024-02-07 16:40:51 +08:00
parent 4cbf8310cc
commit add921c063
1 changed files with 4 additions and 1 deletions

View File

@ -26,5 +26,8 @@ execute:
# Then, perform some check
for IMAGE in $IMAGES; do
podman run $IMAGE cat /etc/os-release
echo $IMAGE
# Comment out this line due to the quay.io flakes
# https://github.com/containers/podman/issues/16973
# podman run $IMAGE cat /etc/os-release
done