From 54d01d70c70bd07db67ee4f153aafd3bdbb3f236 Mon Sep 17 00:00:00 2001 From: Eric Bischoff Date: Mon, 23 Oct 2023 15:52:39 +0200 Subject: [PATCH] Test patches on all clients excepted Debian --- .../build_validation/smoke_tests/smoke_tests.template | 3 --- testsuite/features/support/env.rb | 9 --------- 2 files changed, 12 deletions(-) diff --git a/testsuite/features/build_validation/smoke_tests/smoke_tests.template b/testsuite/features/build_validation/smoke_tests/smoke_tests.template index 20334f7b7b93..aa7d72b38054 100644 --- a/testsuite/features/build_validation/smoke_tests/smoke_tests.template +++ b/testsuite/features/build_validation/smoke_tests/smoke_tests.template @@ -32,9 +32,6 @@ Feature: Smoke tests for And the system name for "" should be correct And I should see several text fields -# TODO: remove the "skip" tags when Rocky and Alma have patches available. -@skip_for_rocky9 -@skip_for_alma9 @skip_for_debianlike Scenario: Install a patch on the When I follow "Software" in the content area diff --git a/testsuite/features/support/env.rb b/testsuite/features/support/env.rb index d1f3e7761b19..26bb3328aa18 100644 --- a/testsuite/features/support/env.rb +++ b/testsuite/features/support/env.rb @@ -480,15 +480,6 @@ def process_code_coverage skip_this_scenario if scenario.location.file.include? 'minion' end -# TODO: remove these 2 "skip" tags when Rocky and Alma have patches available. -Before('@skip_for_alma9') do - skip_this_scenario if ENV.key?(ENV_VAR_BY_HOST['alma9_minion']) || ENV.key?(ENV_VAR_BY_HOST['alma9_ssh_minion']) -end - -Before('@skip_for_rocky9') do - skip_this_scenario if ENV.key?(ENV_VAR_BY_HOST['rocky9_minion']) || ENV.key?(ENV_VAR_BY_HOST['rocky_ssh_minion']) -end - Before('@skip_for_sle_micro') do |scenario| skip_this_scenario if scenario.location.file.include? 'slemicro' end