A flexible lightweight multi-language test report tool with the possibility to add steps, attachments, parameters and so on.
--port <port_number>
and --host 0.0.0.0
in the allure serve command from inside the container. Now I can access the report with all dependancies in the container. Thanks for your help! :)
Hello guys, maybe someone can help me, im new to Jenkins trying to configure pipeline for cypress automation tests, i receive below error:
The input line is too long.
The syntax of the command is incorrect.
FATAL: Can not generate Allure Report, exit code: 255
I've already seen jenkinsci/allure-plugin#199 this post but workarounds mentioned here do not work for me.stage('Report') { steps { script { allure([ includeProperties: false, jdk: '', properties: [], reportBuildPolicy: 'ALWAYS', results: [[path: '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/'])
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/'])
}