Skip to content
Draft
Show file tree
Hide file tree
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 src/ansible_navigator/image_manager/puller.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def _generate_pull_command(self) -> str:
Returns:
The command
"""
command_line = [self._container_engine, "pull"]
command_line = [self._container_engine, "pull", "-q"]
command_line.extend(self._arguments)
command_line.append(self._image)
joined_command = " ".join(command_line)
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/image_manager/test_image_puller.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def test_pull_with_args() -> None:
result = image_puller._generate_pull_command()
expected_string = "podman pull --tls-verify false my_image"
assert result == expected_string
expected_list = ["podman", "pull", "--tls-verify", "false", "my_image"]
expected_list = ["podman", "pull", "-q", "--tls-verify", "false", "my_image"]
assert shlex.split(result) == expected_list


Expand Down
Loading