Skip to content

Commit eeca944

Browse files
committed
Ignore stderr in CondaPackageHelper::_execute_command
1 parent b11a569 commit eeca944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/package_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def requested_packages(self) -> dict[str, set[str]]:
9090

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

9696
@staticmethod

0 commit comments

Comments
 (0)