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 1 reply
-
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.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our Azure devops CI/CD pipeline is running multiple test stages with each publishing allure results (using cypress). As a result,
PublishAllureReport@1
are 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-results
when generating reports?Beta Was this translation helpful? Give feedback.
All reactions