Allure report with robotframework is showing html file without the test run results

1.6k Views Asked by At

I am running tests with robot framework and i want to get allure report. I have been able to successfully install it and i can see that the .xml files are getting created with the test run results. But when i do "Allure serve " it displays a report without any test information in it.

Can someone please help me? I am using AllureReportLibrary in the robotframework

1

There are 1 best solutions below

0
On

share one lession.

robot --listener allure_robotframework  CustomerService.robot

Default output directory is output/allure.

allure generate output  --clean

where I use this command to generate report, no testcase in report.

allure generate output/allure  --clean

when I change to this dir, it works. So I guess the innermost directory is necessary.