Skip to content

Commit

Permalink
Merge pull request os-autoinst#20632 from ricardobranco777/skip_15sp2
Browse files Browse the repository at this point in the history
containers: Skip rootless buildah tests on 15-SP2 & public cloud
  • Loading branch information
ricardobranco777 authored Nov 14, 2024
2 parents 5b47d95 + 26f2e56 commit 72d4bc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/containers/buildah.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use Mojo::Base qw(consoletest);
use testapi;
use serial_terminal qw(select_serial_terminal select_user_serial_terminal);
use utils;
use version_utils qw(get_os_release is_sle);
use version_utils qw(get_os_release is_sle is_public_cloud);
use containers::common;

sub run_tests {
Expand Down Expand Up @@ -100,7 +100,7 @@ sub run {
run_tests($runtime);

# Run tests as user
if ($runtime eq "podman") {
if ($runtime eq "podman" && !is_public_cloud && !is_sle('<15-SP3')) {
if (is_sle('<15-SP5')) {
record_soft_failure("bsc#1232522 - buildah security update changes default network mode from slirp4netns to passt for rootless containers");
} else {
Expand Down

0 comments on commit 72d4bc3

Please sign in to comment.