Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(maint) Remove EPEL5 from External Resource Test #1639

Merged
merged 1 commit into from
Apr 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions acceptance/tests/base/external_resources_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
step 'Verify EPEL resources are up and available' do
def build_url(el_version)
url_base = options[:epel_url]
url_base = options[:epel_url_archive] if el_version == 5
"#{url_base}/epel-release-latest-#{el_version}.noarch.rpm"
end

Expand All @@ -23,11 +22,10 @@ def epel_url_test(el_version)
assert_match(/200 OK/, curl_headers_result.stdout, "EPEL #{el_version} should be reachable at #{url}")
end

step 'Verify el_version numbers 5,6,7 are found on the epel resource' do
[5,6,7].each do |el_version|
step 'Verify el_version numbers 6,7,8 are found on the epel resource' do
[6,7,8].each do |el_version|
epel_url_test(el_version)
end
end

end
end