From 62359dc296ad5a175a6c4d4f7ac356fff40cfc44 Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Thu, 19 Dec 2024 10:12:20 -0500 Subject: [PATCH] update test results location --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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' } } }