From 6d48542bfc55be63f3a517fc048a0cb1e80fe5b0 Mon Sep 17 00:00:00 2001 From: rudy Date: Wed, 16 Nov 2022 13:31:05 +0100 Subject: [PATCH] test cli native --- pipelines/mse-rgaa.jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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',