Skip to content

Commit

Permalink
QE: fix channel selection for PR tests in the CI (#7437)
Browse files Browse the repository at this point in the history
  • Loading branch information
nodeg authored Aug 28, 2023
1 parent 66f92a9 commit b382f68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testsuite/features/support/constants.rb
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,14 @@
sle_base_channel =
if ENV['PROVIDER'].include? 'podman'
'Fake Base Channel'
elsif ENV['SERVER'].include? 'uyuni'
elsif ENV['SERVER'].include?('uyuni') || ENV['SERVER'].include?('suma-pr')
'openSUSE Leap 15.4 (x86_64)'
else
'SLES15-SP4-Pool'
end

proxy_base_channel =
if ENV['SERVER'].include? 'uyuni'
if ENV['SERVER'].include?('uyuni') || ENV['SERVER'].include?('suma-pr')
'openSUSE Leap 15.4 (x86_64)'
else
'SLE-Product-SUSE-Manager-Proxy-4.3-Pool'
Expand Down

0 comments on commit b382f68

Please sign in to comment.