Azure devops integration Allure Report
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Azure devops integration Allure Report
Hello,
i am working with azuredevops pipeline where i have my Readuapi Tests, I added the plugin Allure generation report
but i have a blanc report however, locally the generation is ok i can have the report !
Is anywone here working with allure report integration with azuredevops please ?
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hey @isbiat ; can you upload a screenshot of the blank report / output you're getting from the pipeline?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
please find below the screenshot it is from azure pipeline
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is the Allure framework installed on the pipeline agent?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Actually i installed the framework on the VM where i execute My api tests then in the pipeline i added the plugin allure
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok. So, ReadyAPI will generate Allure results. You need to pass the generated files to the Allure framework to get an actual report. For example, the following command generates a report using the files stored in the specified folder and opens the report in the default browser:
allure serve C:\Tests\Reports\
So you may need the above command as part of your pipeline. Let me know if that sounds feasible.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
Actually, i am using this commande to generate the report
allure generate "$(Common.TestResultsDirectory)" --output "$(Build.StagingDirectory)\allure"
