Skip to content

Commit

Permalink
Add remediation to overridable result in package updates action
Browse files Browse the repository at this point in the history
  • Loading branch information
pr-watson committed Jan 24, 2024
1 parent 7b1ae12 commit 23c50d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions convert2rhel/actions/system_checks/package_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ def run(self):
title="Outdated packages detected",
description="Please refer to the diagnosis for further information",
diagnosis=package_not_up_to_date_error_message,
remediations="If you wish to ignore this message, set the environment variable "
"'CONVERT2RHEL_OUTDATED_PACKAGE_CHECK_SKIP' to 1.",
)
return

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ def test_check_package_updates_not_up_to_date(pretend_os, monkeypatch, package_u
title="Outdated packages detected",
description="Please refer to the diagnosis for further information",
diagnosis=diagnosis,
remediations="If you wish to ignore this message, set the environment variable "
"'CONVERT2RHEL_OUTDATED_PACKAGE_CHECK_SKIP' to 1.",
)

assert diagnosis in caplog.records[-1].message
Expand Down

0 comments on commit 23c50d3

Please sign in to comment.