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

Use direct package install temporarily instead of using spacecmd command #9628

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,14 @@ Feature: Setup containerized proxy
Scenario: Wait until the proxy host appears
When I wait until onboarding is completed for "proxy"

# WORKAROUND: Disable until https://bugzilla.suse.com/show_bug.cgi?id=1235692 is fixed
# Scenario: Upgrade mgrpxy tool
# Then I upgrade "proxy" with the last "mgrpxy" version using spacecmd
# And I reboot the "proxy" minion through the web UI

# WORKAROUND: Remove once https://bugzilla.suse.com/show_bug.cgi?id=1235692 is fixed
Scenario: Upgrade mgrpxy tool
Then I upgrade "proxy" with the last "mgrpxy" version
When I install packages "mgrpxy" on this "proxy"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You still usikg packages instead of package, as I suggested on my previous comment 🤓

And I reboot the "proxy" minion through the web UI

Scenario: Generate containerized proxy configuration
Expand Down
2 changes: 1 addition & 1 deletion testsuite/features/step_definitions/command_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@
raise "The word #{word} occured #{occurences} times, which is more more than #{threshold} times in file #{path}" if occurences > threshold
end

Then(/^I upgrade "([^"]*)" with the last "([^"]*)" version$/) do |host, package|
Then(/^I upgrade "([^"]*)" with the last "([^"]*)" version using spacecmd$/) do |host, package|
system_name = get_system_name(host)
last_event_before_upgrade = get_last_event(host)
last_event = last_event_before_upgrade
Expand Down
Loading