Skip to content

Commit

Permalink
containers: Run checks for podman-remote unconditionally
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobranco777 committed May 21, 2024
1 parent e7ff06b commit 92bfd78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/containers/podman_integration.pm
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ sub run {
run_tests(rootless => 1, remote => 0, skip_tests => get_var('PODMAN_BATS_SKIP_USER_LOCAL', ''));

# user / remote
run_tests(rootless => 1, remote => 1, skip_tests => get_var('PODMAN_BATS_SKIP_USER_REMOTE', '')) if (script_run('which podman-remote') == 0);
run_tests(rootless => 1, remote => 1, skip_tests => get_var('PODMAN_BATS_SKIP_USER_REMOTE', ''));

select_serial_terminal;
assert_script_run("cd $test_dir/podman-$podman_version/");
Expand All @@ -105,7 +105,7 @@ sub run {
run_tests(rootless => 0, remote => 0, skip_tests => get_var('PODMAN_BATS_SKIP_ROOT_LOCAL', ''));

# root / remote
run_tests(rootless => 0, remote => 1, skip_tests => get_var('PODMAN_BATS_SKIP_ROOT_REMOTE', '')) if (script_run('which podman-remote') == 0);
run_tests(rootless => 0, remote => 1, skip_tests => get_var('PODMAN_BATS_SKIP_ROOT_REMOTE', ''));
}

sub cleanup() {
Expand Down

0 comments on commit 92bfd78

Please sign in to comment.