Abhinaba Chakraborty
Abhinaba Chakraborty

Reputation: 3671

How to customize allure report name?

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

Answers (1)

boskos
boskos

Reputation: 36

Try with:

allure generate --clean --report-name 'Custom Report Name'

NOTE: You must have Allure version 2.26.0 or latest

Dashboard Screenshot

Upvotes: 2

Related Questions