A flexible lightweight multi-language test report tool with the possibility to add steps, attachments, parameters and so on.
contentType('text/html')
triggers {
always {
subject('$PROJECT_DEFAULT_SUBJECT')
content('$DEFAULT_CONTENT')
sendTo{
recipientList()
}
}
}
}
archiveArtifacts {
pattern('automationReports/**/*')
pattern('${LOGGING_DIR}/*')
fingerprint()
allowEmpty()
}
publishHtml {
report('allure-report') {
reportName('Test Output')
}
report('test') {
reportName('Allure Tests')
keepAll()
allowMissing()
alwaysLinkToLastBuild()
}
}
allure(['automationReports/allure-results/'])
contentType('text/html')
triggers {
always {
subject('$PROJECT_DEFAULT_SUBJECT')
content('$DEFAULT_CONTENT')
sendTo{
recipientList()
}
}
}
}
archiveArtifacts {
pattern('automationReports/**/*')
pattern('${LOGGING_DIR}/*')
fingerprint()
allowEmpty()
}
publishHtml {
report('allure-report') {
reportName('Test Output')
}
report('test') {
reportName('Allure Tests')
keepAll()
allowMissing()
alwaysLinkToLastBuild()
}
}
allure(['automationReports/allure-results/'])
}