From 51aa8a5c22edc980d760dc1fd21a6b9d25e49e4a Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Tue, 23 Jan 2024 11:28:28 -0500 Subject: [PATCH] USHIFT-2212: remove package-to-package upgrade test scenario Remove the scenario that tests upgrading from released packages of the previous series to released packages of the current series. This test can become a CI blocker if something outside of the packages changes and makes the test fail, so we test this scenario in the QE environment instead. --- .../el93-crel@upgrade-from-el92-prel.sh | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 test/scenarios-periodics/el93-crel@upgrade-from-el92-prel.sh diff --git a/test/scenarios-periodics/el93-crel@upgrade-from-el92-prel.sh b/test/scenarios-periodics/el93-crel@upgrade-from-el92-prel.sh deleted file mode 100644 index 028cd62679b..00000000000 --- a/test/scenarios-periodics/el93-crel@upgrade-from-el92-prel.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -# Sourced from scenario.sh and uses functions defined there. - -# Scenario tests upgrade from RHEL9.2 to RHEL9.3 (including MicroShift). - -start_commit="rhel-9.2-microshift-4.$(previous_minor_version)" -target_commit=rhel-9.3-microshift-crel - -scenario_create_vms() { - if ! does_commit_exist "${target_commit}"; then - echo "Commit '${target_commit}' not found in ostree repo - skipping test" - return 0 - fi - prepare_kickstart host1 kickstart.ks.template "${start_commit}" - launch_vm host1 -} - -scenario_remove_vms() { - remove_vm host1 -} - -scenario_run_tests() { - if ! does_commit_exist "${target_commit}"; then - echo "Commit '${target_commit}' not found in ostree repo - skipping test" - return 0 - fi - run_tests host1 \ - --variable "TARGET_REF:${target_commit}" \ - suites/upgrade/upgrade-successful.robot -}