Questions tagged [allure]

The Allure Framework is a flexible, lightweight multi-language test report tool, with the possibility of adding to the report of additional information such as screenshots, logs and so on.

Allure Framework is a lightweight multi-language test report tool. It transforms standard unit-test framework (junit, nunit, phpunit) results into pretty-looking dynamic web reports. You can add all the required information (such as screenshots, server logs or related jira tickets) to the final report.

References:

1026 questions
7
votes
4 answers

How can I export my tests results from docker container to a directory on the host machine

I run some tests inside a docker container, at the end, test reports get generated in a directory called 'allure_test_results' and I would like those report to be available on the host machine. 1.Command in a bash file that I run as an entrypoint in…
Aziz
  • 149
  • 3
  • 6
7
votes
1 answer

How to append logs of Pytest into Allure Report

How can i get to show all the logs of pytest into Allure. and what are stdout and stderr used for ? Please check the Highlighted Code which i am referring to
Mahesh_Kokare
  • 69
  • 1
  • 2
7
votes
2 answers

allure2 listener to output the steps in console

I am using Allure2 with TestNG. I want to write my own listener which prints @Steps in the console output. I saw the interface "StepLifecycleListener" in allure but I am not able to implement this listener in TestNg. Any pointers ? @Override public…
user3290656
  • 339
  • 1
  • 3
  • 10
6
votes
3 answers

pytest: error: unrecognized arguments: --alluredir

(PYTEST_test_programs) E:\PYTEST_test_programs\Allure_report1>pytest test_file01.py --alluredir="C:\Users\Admin\Desktop\Resumes\reports" ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...] pytest: error: unrecognized arguments:…
ARUNDRUK
  • 123
  • 1
  • 3
  • 6
6
votes
0 answers

Allure reporting versus extent reports in selenium

I am using extent reports in selenium framework but i got suggestion to use Allure reporting. Is anyone using Allure reporting or having idea what is a better choice ? Thanks!!
SeleniumTester
  • 331
  • 1
  • 7
  • 17
6
votes
1 answer

Configuration in Allure to Cucumber in Ruby

I need to configure the following params: environment, trend, history, executors, retries, etc. I need these params for cucumber to work with ruby. I searched in a lot of places and I did not find much. I would appreciate if you can provide these…
user8609295
  • 73
  • 1
  • 6
6
votes
1 answer

Aggregate data from several allure reports

Allure report tool was designed to show one report per test run. Developers warned me about it. Anyway i need more from this convenient tool. Did you think to keep allure reports for several days/month? Did you think to analyze history data…
6
votes
3 answers

Allure @Step annotation does not work

I just connected Allure report to my TestNG tests and Maven build. All works fine and reports are supercool. Just one thing - @Step annotation doesn't work. Steps are not appearing in report. I followed the examples.
ygrunin
  • 325
  • 1
  • 4
  • 15
5
votes
1 answer

Is it possible to have screenshots of allure report between steps like extent report?

I'm using allure report to generate a report for my tests. earlier I used to use extent report. as you know, in extent report you can add logs and screenshot in order of creating them but in allure reports, all the screenshots are going to be shown…
0xM4x
  • 460
  • 1
  • 8
  • 19
5
votes
2 answers

Is it possible to generate Allure report in python-unittest?

I have found solution for allure report in Pytest. But I need to generate allure report in python-unittest. Is it possible?
5
votes
3 answers

How to create Allure history

I'm planning to run my Allure test scripts every day. After running Day 3 test scripts, how to see day1 & Day 2 test results along with Day3. History is not loaded into history tab.
Chris
  • 236
  • 4
  • 14
5
votes
1 answer

How to send Allure Reports in Email using Jenkins server

I have created a Automation using Rest Assured, TestNg, Gradle and Allure reports. Now i am able to generate Allure reports , But i am looking something where i can send Allure reports in Email. Whether this is any plugin is available or any latest…
Rahul Mendiratta
  • 615
  • 1
  • 6
  • 14
5
votes
1 answer

Gradle refuse to start process command 'cmd'

I'm encountering issue with a custom gradle task. Seems like gradle refuse to start a command line process. Here is the custom task: task generateAllure(type: Exec) { workingDir "$projectDir/allure/bin" if…
lilkunien
  • 71
  • 2
  • 3
  • 7
5
votes
2 answers

After removing some test cases, still displaying the old test cases in current execution report

I have integrated the Allure report with jenkins. I was executing some 300 test cases previously but currently, have removed around 100 test cases for this release. TestNG now executed 200 test cases only but the problem is that the consolidated…
Nikunj Aggarwal
  • 754
  • 2
  • 12
  • 32
5
votes
5 answers

How to customize allure report title and logo

Below attached allure report image that generated via allure. Would like to customize report title and logo (image highlighted yellow) with my own title and logo instead of ALLURE REPORT and default logo. Appreciate your help.
Kasun Caldera
  • 61
  • 1
  • 1
  • 3
1
2
3
68 69