pa11y: possibilité d'activer/désactiver les notices/warnings

This commit is contained in:
2020-08-11 10:53:49 +02:00
parent 11f3ddc835
commit 83893e65d4
2 changed files with 15 additions and 2 deletions

View File

@ -3,6 +3,8 @@ def audit(String url, Map params = [:]) {
def username = params.username ? params.username : '';
def password = params.password ? params.password : '';
def standard = params.standard ? params.standard : 'WCAG2AA';
def includeWarnings = params.includeWarnings ? params.includeWarnings : false;
def includeNotices = params.includeNotices ? params.includeNotices : false;
def pa11yImage = buildDockerImage()
@ -12,6 +14,8 @@ def audit(String url, Map params = [:]) {
-e PA11Y_USERNAME='${username}'
-e PA11Y_PASSWORD='${password}'
-e PA11Y_STANDARD='${standard}'
-e PA11Y_INCLUDE_WARNINGS='${includeWarnings}'
-e PA11Y_INCLUDE_NOTICES='${includeNotices}'
"""
pa11yImage.inside(dockerArgs) {