diff --git a/pipelines/mse-rgaa.jenkinsfile b/pipelines/mse-rgaa.jenkinsfile index 2650739..099c97d 100644 --- a/pipelines/mse-rgaa.jenkinsfile +++ b/pipelines/mse-rgaa.jenkinsfile @@ -36,7 +36,7 @@ pipeline { ) ]) { def report = pa11y.audit(u.trim(), [ - reporter: 'html', + reporter: 'cli', username: env.MSEDEV_USERNAME, password: env.MSEDEV_PASSWORD, standard: 'WCAG2AA', @@ -44,13 +44,13 @@ pipeline { includeWarnings: params.INCLUDE_WARNINGS, ]) - writeFile file:"./report_${count}.html", text:report + writeFile file:"./report_${count}.xml", text:report count++ } } } - junit testResults: '*.html', skipPublishingChecks: true + junit testResults: '*.xml', skipPublishingChecks: true rocketSend( channel: '#cnous-mse',