update test results location

This commit is contained in:
Kameron Kenny 2024-12-19 10:12:20 -05:00
parent 3c444def73
commit 62359dc296
1 changed files with 4 additions and 3 deletions

7
Jenkinsfile vendored
View File

@ -104,7 +104,8 @@ pipeline {
stage('Integration Tests') {
steps {
sh 'bats -F junit test/integration/dns.bat > TEST-Integration-dns.xml'
sh 'mkdir -p test/results/integration'
sh 'bats -F junit test/integration/dns.bat > test/results/integration/TEST-Integration-dns.xml'
}
}
@ -142,10 +143,10 @@ pipeline {
}
}
}
post {
always {
junit 'build/reports/**/*.xml'
junit 'test/results/**/*.xml'
}
}
}