Working with generated Allure report for further processing via API (Java) #1747
-
Having JUnit5 and Allure2 in place, we generate reports, giving us all the details we need. Afterwards, we read the generated allure report and sync certain aspects to Xray. With Allure 2.17.0 the io.qameta.allure.AllureResultsReader was removed. Any suggestions on how to work with a generated Allure report afterwards? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The main reason is that we don't want to have Allure Results Reader as a part of public API as it rarely used by anyone. Besides that, Allure itself supports not only Allure JSON results (known as Allure 2 model) but many others, like Allure XML (from Allure 1), CucumberJSON, XCtest results etc. I can suggest you a few options:
|
Beta Was this translation helpful? Give feedback.
The main reason is that we don't want to have Allure Results Reader as a part of public API as it rarely used by anyone. Besides that, Allure itself supports not only Allure JSON results (known as Allure 2 model) but many others, like Allure XML (from Allure 1), CucumberJSON, XCtest results etc.
I can suggest you a few options: