From 2a552f9375455e3a54d3c265d4d526dd57943dc6 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sat, 16 Oct 2021 22:21:14 +0300 Subject: [PATCH] Use --quiet when mamba search to simplify output parsing --- test/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers.py b/test/helpers.py index 0e1dc25f..e58abecc 100644 --- a/test/helpers.py +++ b/test/helpers.py @@ -116,7 +116,7 @@ class CondaPackageHelper: LOGGER.info("Grabing the list of available packages (can take a while) ...") # Keeping command line output since `mamba search --outdated --json` is way too long ... self.available = CondaPackageHelper._extract_available( - self._execute_command(["mamba", "search", "--outdated"]) + self._execute_command(["mamba", "search", "--outdated", "--quiet"]) ) return self.available