From f299ac3d2ba60d38c8b5201dfa267d5fa62e414f Mon Sep 17 00:00:00 2001 From: Kameron Kenny - pi501 Date: Thu, 19 Dec 2024 15:04:51 -0500 Subject: [PATCH] break tests into suites by domain. --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c95467b..ea5f17c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -105,7 +105,8 @@ pipeline { stage('Integration Tests') { steps { sh 'mkdir -p test/results/integration' - sh 'bats -F junit test/integration/dns/**/*.bat test/integration/dns/**/**/*.bat > test/results/integration/TEST-Integration-dns.xml' + sh 'bats -F junit test/integration/dns/kameronkenny.com/*.bat test/integration/dns/kameronkenny.com/**/*.bat > test/results/integration/TEST-Integration-dns-kameronkenny_com.xml' + sh 'bats -F junit test/integration/dns/in.thelinuxpro.net/*.bat test/integration/dns/in.thelinuxpro.net/**/*.bat > test/results/integration/TEST-Integration-dns-in_thelinuxpro_net.xml' } } }