File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -167,15 +167,23 @@ def run_test(
167
167
command = f"python3 /srv/src/bootstrap/bootstrap.py --version={ upgrade_from } "
168
168
run_command (container_name , command )
169
169
170
+ # show user environment
171
+ command = "/opt/tljh/user/bin/mamba list"
172
+ run_command (container_name , command )
173
+
170
174
command = f"python3 /srv/src/bootstrap/bootstrap.py { ' ' .join (installer_args )} "
171
175
run_command (container_name , command )
172
176
177
+ # show user environment (again if upgrade)
178
+ command = "/opt/tljh/user/bin/mamba list"
179
+ run_command (container_name , command )
180
+
173
181
# Install pkgs from requirements in hub's pip, where
174
182
# the bootstrap script installed the others
175
183
command = "/opt/tljh/hub/bin/python3 -m pip install -r /srv/src/integration-tests/requirements.txt"
176
184
run_command (container_name , command )
177
185
178
- # show environment
186
+ # show hub environment
179
187
command = "/opt/tljh/hub/bin/python3 -m pip freeze"
180
188
run_command (container_name , command )
181
189
You can’t perform that action at this time.
0 commit comments