displaying python_bin in debug mode.

This commit is contained in:
2026-03-01 20:23:36 +01:00
parent 986cdb9ed9
commit 9807457ced
2 changed files with 1 additions and 1 deletions

View File

@@ -208,6 +208,7 @@ class TestProcess(Process):
# Creation of the python evaluation process for loading of the complete test
eval_proc = eval_process_init("", api_request, 10, test_dir)
eval_proc.start()
tm.print_debug(f"python bin is: '{eval_proc.python_bin}'.")
if not eval_proc.wait_ready(10):
raise ETUMRuntimeError(
f"""Impossible to start the external python execution process.

View File

@@ -71,7 +71,6 @@ def _sys_python_bin():
break
sys_python_bin = ""
tm.print_debug(f"python bin is: '{sys_python_bin}'.")
return sys_python_bin