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

remove expect_ret=0 when check if python3 exist. #462

Merged
merged 1 commit into from
Oct 25, 2024
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
2 changes: 1 addition & 1 deletion os_tests/tests/test_rhel_guest_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def test_check_files_controlled_by_rpm(self):
self.SSH.put_file(local_file=src_path, rmt_file=dest_path)
utils_lib.is_pkg_installed(self,"python3")
cmd = "python3 --version"
ret = utils_lib.run_cmd(self, cmd, expect_ret=0, msg="Check if python3 exist")
ret = utils_lib.run_cmd(self, cmd, msg="Check if python3 exist")
print(f"python3 version check output: {ret}")
if ret.strip() and "Python" in ret:
print("python3 found; running rogue.py with python3.")
Expand Down
Loading