Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Log mamba version
Browse files Browse the repository at this point in the history
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
@@ -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)
)

0 comments on commit 4823d4c

Please sign in to comment.