Skip to content

Commit

Permalink
Log mamba version
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Dec 12, 2024
1 parent 546dae2 commit 4823d4c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/package_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,13 @@ def requested_packages(self) -> dict[str, set[str]]:
"""Return the requested package (i.e. `mamba install <package>`)"""
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)
)
Expand Down

0 comments on commit 4823d4c

Please sign in to comment.