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

5
Jenkinsfile vendored
View File

@ -104,7 +104,8 @@ pipeline {
stage('Integration Tests') { stage('Integration Tests') {
steps { 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'
} }
} }
@ -145,7 +146,7 @@ pipeline {
post { post {
always { always {
junit 'build/reports/**/*.xml' junit 'test/results/**/*.xml'
} }
} }
} }