csv format test
parent
c461dcec0a
commit
eed3311355
|
|
@ -138,6 +138,14 @@ pipeline {
|
|||
SCRIPT_PARAMETER = SCRIPT_PARAMETER + " -p " + PRESELECT.toString()
|
||||
}
|
||||
|
||||
if (FORMATS.isEmpty()) {
|
||||
currentBuild.result = 'ABORTED'
|
||||
error('Aborting due to missing report format parameter')
|
||||
return
|
||||
} else {
|
||||
SCRIPT_PARAMETER = SCRIPT_PARAMETER + " -o " + FORMATS.toString()
|
||||
}
|
||||
|
||||
echo "${SCRIPT_PARAMETER}"
|
||||
sh "python3.8 createReport.py ${SCRIPT_PARAMETER}"
|
||||
sh "python3.8 summary.py"
|
||||
|
|
|
|||
Loading…
Reference in New Issue