Is it possible to display the @Epic, @feature, @story and @description descriptions in the .docx file?
This is the code in the Jenkins Pipeline:
post {
always {
withEnv(["XXXX+XXXX=.tools"]){
bat "allure-docx.exe --detail-level compact --logo XXX_logo.png --title ""+ doctitle +"" target/allure-results target/" + filename
archiveArtifacts 'target/' + projecttitle + '*'
}
}
}
}
}
post {
always {
script {
allure([
includeProperties: false,
jdk: 'JDK11',
reportBuildPolicy: 'ALWAYS',
results: [[path: 'target/allure-results']]
])
}
}
Is it possible to display the @Epic, @feature, @story and @description descriptions in the .docx file?
This is the code in the Jenkins Pipeline:
post {
always {
withEnv(["XXXX+XXXX=.tools"]){
bat "allure-docx.exe --detail-level compact --logo XXX_logo.png --title ""+ doctitle +"" target/allure-results target/" + filename
archiveArtifacts 'target/' + projecttitle + '*'
}
}
}
}
}
post {
always {
script {
allure([
includeProperties: false,
jdk: 'JDK11',
reportBuildPolicy: 'ALWAYS',
results: [[path: 'target/allure-results']]
])
}
}