continue implementation

This commit is contained in:
2025-12-27 20:01:45 +01:00
parent 79e4825b44
commit 58be2d600c
5 changed files with 85 additions and 21 deletions

View File

@@ -72,7 +72,10 @@ REPORT_TEMPLATE = """
def run_test_suite(tasks):
aggregated_results = {}
shell_script = "./TPF/test_execution.sh"
# Use path relative to this script
script_dir = os.path.dirname(os.path.abspath(__file__))
shell_script = os.path.join(script_dir, "test_execution.sh")
if os.name != 'nt':
subprocess.run(["chmod", "+x", shell_script])