From b171971a89c14ff7d41abbd0a1a049ca99cb18f2 Mon Sep 17 00:00:00 2001 From: Denes Matetelki Date: Thu, 20 Dec 2018 16:10:15 +0100 Subject: [PATCH] the semicolon was the problem --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ac97089..f59efeb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,8 +33,7 @@ pipeline { stage('archiving test results') { steps { - echo "here is a step" - junit: 'testresults.xml' + junit 'testresults.xml' } }