diff --git a/Jenkinsfile b/Jenkinsfile index 177aea6..e2457ee 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }