From f75b1e15c8050637977be83c59154b0b63f1c27f Mon Sep 17 00:00:00 2001 From: Toni Kangas Date: Sat, 21 Jun 2025 21:33:57 +0300 Subject: [PATCH] Remove `onlyCritical` which is no longer supported by `robot` step --- docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile b/docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile index 80f24b3..ee0af4b 100644 --- a/docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile +++ b/docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile @@ -53,7 +53,7 @@ pipeline { } post { success { - robot outputPath: 'rebot_output', otherFiles: '**/*.png', onlyCritical: false, passThreshold: 100.0, unstableThreshold: 0.0 + robot outputPath: 'rebot_output', otherFiles: '**/*.png', passThreshold: 100.0, unstableThreshold: 0.0 } } }