diff --git a/tests/package_helper.py b/tests/package_helper.py index 0880250c3d..2e019c6868 100644 --- a/tests/package_helper.py +++ b/tests/package_helper.py @@ -81,11 +81,13 @@ def requested_packages(self) -> dict[str, set[str]]: """Return the requested package (i.e. `mamba install `)""" if self.requested is None: LOGGER.info("Grabbing the list of manually requested packages ...") - self.requested = CondaPackageHelper._parse_package_versions( - self._execute_command( - CondaPackageHelper._conda_export_command(from_history=True) - ) - ) + # self.requested = CondaPackageHelper._parse_package_versions( + # self._execute_command( + # CondaPackageHelper._conda_export_command(from_history=True) + # ) + # ) + vers = self._execute_command(["mamba", "--version"]) + LOGGER.debug(vers) env = self._execute_command( CondaPackageHelper._conda_export_command(from_history=True) )