From a75708c79b25c811da61d03495300ee55ccb7196 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 15 Jun 2023 15:28:33 +0200 Subject: [PATCH] version switch to python 3.8 should be successful now --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ff97445..153c2d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -137,13 +137,13 @@ pipeline { } echo "${SCRIPT_PARAMETER}" - sh "python3.8 createReport.py ${SCRIPT_PARAMETER}" - sh "python3.8 summary.py" + sh "python3 createReport.py ${SCRIPT_PARAMETER}" + sh "python3 summary.py" summary = readFile('summary.txt').trim() if (KPI_EXTENSION=='true') { echo "Executing KPI Extension" - sh "python3.8 kpi_extension.py" + sh "python3 kpi_extension.py" } }