Skip to content

Commit

Permalink
Ignore stderr in CondaPackageHelper::_execute_command
Browse files Browse the repository at this point in the history
mathbunnyru committed Jan 26, 2025
1 parent b11a569 commit eeca944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/package_helper.py
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ def requested_packages(self) -> dict[str, set[str]]:

def _execute_command(self, command: list[str]) -> str:
"""Execute a command on a running container"""
rc = self.running_container.exec_run(command)
rc = self.running_container.exec_run(command, stderr=False)
return rc.output.decode("utf-8") # type: ignore

@staticmethod

0 comments on commit eeca944

Please sign in to comment.