fixed error in Jenkinsfile

This commit is contained in:
Erik Brakkee 2024-11-22 21:16:10 +01:00
parent b6f0f35835
commit b7b9e04f3b

6
Jenkinsfile vendored
View File

@ -57,12 +57,10 @@ pipeline {
post {
always {
junit(testResults: 'testout/junit/**/*.xml',
keepLongStdio: true,
uniqueName: 'Unit Tests')
keepLongStdio: true)
junit(testResults: 'testout/integrationtest/**/*.xml',
keepLongStdio: true,
uniqueName: 'Integration tests')
keepLongStdio: true)
}
}
}