Reputation: 3671
I am running a postman collection using newman and generating the reports using Allure framework. My command looks something like this:
newman run $collection_filename -e $environment_filename -r allure --reporter-allure-export "$reportsFolder"
allure generate --clean $reportsFolder
I looked into the allure github repo but couldn't find any command line argument/technique to change the name of the allure report generated.
Upvotes: 1
Views: 1034
Reputation: 36
Try with:
allure generate --clean --report-name 'Custom Report Name'
NOTE: You must have Allure version 2.26.0 or latest
Upvotes: 2