Skip to content

Commit af18065

Browse files
committed
comment++
1 parent 3c2623a commit af18065

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _install_WfCommons_on_container(container):
3939
target_path = '/tmp/' # inside container
4040
tar_data = _make_tarfile_of_wfcommons()
4141
container.put_archive(target_path, tar_data)
42-
# Cleanup files from the host
42+
# Cleanup files that came from the host
4343
exit_code, output = container.exec_run("sudo /bin/rm -rf /tmp/WfCommons/build/", stdout=True, stderr=True)
4444
exit_code, output = container.exec_run("sudo /bin/rm -rf /tmp/WfCommons/*.egg-info/", stdout=True, stderr=True)
4545
# Clean up and force a rebuild of cpu-benchmark (because it may be compiled for the wrong architecture)
@@ -52,6 +52,7 @@ def _install_WfCommons_on_container(container):
5252
# Install WfCommons on the container (to install wfbench and cpu-benchmark really)
5353
exit_code, output = container.exec_run("sudo python3 -m pip install -v . --break-system-packages",
5454
workdir="/tmp/WfCommons", stdout=True, stderr=True)
55+
# print(output.decode())
5556
if exit_code != 0:
5657
raise RuntimeError("Failed to install WfCommons on the container")
5758

0 commit comments

Comments
 (0)