diff --git a/Jenkinsfile b/Jenkinsfile index 964e786..a83b3f9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,10 +28,13 @@ pipeline { echo 'Things were different before...' } } + } stage('archiving test results') { - junit: 'testresults.xml' + steps { + junit: 'testresults.xml' + } } }