From f33d1f9f98405972262f214963a17aeca011a492 Mon Sep 17 00:00:00 2001 From: austin Date: Mon, 2 Sep 2024 11:00:14 -0400 Subject: [PATCH] make debug test pipeline optional again --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5f4345e8..17b55d76 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ pipeline { script { sh 'rm -f ./testsuccess' catchError { - sh 'mvn test -P integration' + sh 'mvn test -P integration && touch ./testsuccess' } // sh 'if ! grep -q "Errors: 2" ./target/surefire-reports/*; then touch ./testsuccess; fi' }