From 5f6e2e86105bd46a0db45631f743ba532b8dee78 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Wed, 25 Sep 2024 18:01:07 +0200 Subject: [PATCH] Fixing typo as threshols are characters and not integers --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9ebbc9e..4833c3c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { always { // Publish JUnit test results xunit ( - thresholds: [ skipped(failureThreshold: 0) , failed(failureThreshold: 0) ], + thresholds: [ skipped(failureThreshold: '0') , failed(failureThreshold: '0') ], tools: [ PHPUnit(pattern: 'phpunit.xml') ] ) // Remove containers