version switch to python 3.8 should be successful now

daily
SLW\ARNAUA 2023-06-15 16:15:10 +02:00
parent 2161731953
commit 5369e65409
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -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"
}
}