From 36141921585193b9e3da2321fd3474d42d10f79e Mon Sep 17 00:00:00 2001 From: Kameron Kenny Date: Fri, 20 Dec 2024 09:41:40 -0500 Subject: [PATCH] update tests and try '--gather-test-outputs-in' for results output instead of redirection. --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fd21451..8c6686b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -105,9 +105,9 @@ pipeline { stage('Integration Tests') { steps { sh 'mkdir -p test/results/integration' - sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/thelinux.pro/*.bat test/integration/dns/thelinux.pro/**/*.bat - sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/kameronkenny.com/*.bat test/integration/dns/kameronkenny.com/**/*.bat - sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/in.thelinuxpro.net/*.bat test/integration/dns/in.thelinuxpro.net/**/*.bat + sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/thelinux.pro/*.bat test/integration/dns/thelinux.pro/**/*.bat' + sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/kameronkenny.com/*.bat test/integration/dns/kameronkenny.com/**/*.bat' + sh 'bats -F junit --gather-test-outputs-in test/results/integration test/integration/dns/in.thelinuxpro.net/*.bat test/integration/dns/in.thelinuxpro.net/**/*.bat' } } }