Supporting multiple publish allure report tasks in the same pipeline. Currently the second publish will overwrite the first one #2488
Unanswered
anthony0lai
asked this question in
Documentation
Replies: 1 comment 2 replies
-
|
Hey there!
- task: PublishAllureReportDev@1
displayName: "publish allure report 1"
inputs:
reportName: "Report 1"
- task: PublishAllureReportDev@1
displayName: "publish allure report 2"
inputs:
reportName: "Report 2" |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Our Azure devops CI/CD pipeline is running multiple test stages with each publishing allure results (using cypress). As a result,

PublishAllureReport@1are called multiple times. In this example, there are 3 tests running in the first publish, and 24 tests in the second publishWhile expecting in this case, either
However, the allure report is showing only test results from the second test run. Is there anyway to merge multiple

allure-resultswhen generating reports?Beta Was this translation helpful? Give feedback.
All reactions