From 5369e65409c7b0dd243cad93ee5aa7d55b8a49f2 Mon Sep 17 00:00:00 2001 From: "SLW\\ARNAUA" Date: Thu, 15 Jun 2023 16:15:10 +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 6b99f6c..9a57d4d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -138,13 +138,13 @@ pipeline { } echo "${SCRIPT_PARAMETER}" - sh "python createReport.py ${SCRIPT_PARAMETER}" - sh "python 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 "python kpi_extension.py" + sh "python3 kpi_extension.py" } }