From d29869c211d99a751074e40f3cc2c8360ed5ba3c Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Mon, 26 Feb 2024 09:21:43 +0100 Subject: [PATCH] test mamba list --- .github/integration-test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/integration-test.py b/.github/integration-test.py index b53ba07f..03328a2b 100755 --- a/.github/integration-test.py +++ b/.github/integration-test.py @@ -170,6 +170,8 @@ def run_test( # show user environment command = "/opt/tljh/user/bin/python3 -m pip freeze" run_command(container_name, command) + command = "/opt/tljh/user/bin/mamba list" + run_command(container_name, command) command = f"python3 /srv/src/bootstrap/bootstrap.py {' '.join(installer_args)}" run_command(container_name, command) @@ -177,6 +179,8 @@ def run_test( # show user environment (again if upgrade) command = "/opt/tljh/user/bin/python3 -m pip freeze" run_command(container_name, command) + command = "/opt/tljh/user/bin/mamba list" + run_command(container_name, command) # Install pkgs from requirements in hub's pip, where # the bootstrap script installed the others