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:

811 questions
13
votes
4 answers

Allure report: nothing shown in Chrome

I'm trying to use Allure-framework to generate a report for my Selenium WebDriver tests. I use JUnit framework and allure-maven-plugin with version 1.3.9 of Allure. I run tests with mvn test then generate the report using mvn site. I see generated…
just-boris
  • 8,201
  • 5
  • 41
  • 77
12
votes
1 answer

How to configure Allure Jenkins Plugin?

I have installed Allure Jenkins Plugin 2.10 on Jenkins ver. 2.24. The installation instruction says to Configure Allure Commandline from "Jenkins Configure Page". Jenkins even complains about missing Allure Commandline: However, the only…
dzieciou
  • 2,910
  • 4
  • 31
  • 59
12
votes
1 answer

Allure integration with multi-module test suite

We have an test suite which is based on maven framework and consists of multi-module. Modules used - project [no code] test [@Test classes are included under /src/main/java, testng.xml in /src/main/resources] core [configured to execute basic…
Naman
  • 23,555
  • 22
  • 173
  • 290
10
votes
2 answers

Allure reports to see historic trends

I am working on creating a Reports Dashboard for automated tests that run once in a day. I am using WebdriverIO and so far allure has been super helpful in building detailed reports. I am using the allure command line command: allure generate…
Siddharth Sonone
  • 342
  • 2
  • 4
  • 13
8
votes
2 answers

allure-results directory not generated under target folder

I upgraded to latest 2.0-BETA14 in my Maven project. test-results folder is getting generated under the project directory instead of target directory. I have gone through the allure documentation website and they have suggest to…
user3290656
  • 139
  • 1
  • 1
  • 7
8
votes
3 answers

How to add a screenshot to allure report with python?

I have this code: # coding: utf-8 from selenium import webdriver import pytest import allure @pytest.yield_fixture(scope='session') def driver(): _driver = webdriver.PhantomJS() yield _driver _driver.quit() def test_ya(driver): …
8
votes
5 answers

Generating allure report using pytest

I am using py test allure adaptor and trying to generate input data required for allure report. But I am not able to generate any XML's. When I execute the py file using py.test sample.py, it did create pycache dir. Then I executed "allure generate…
Lavanya
  • 81
  • 1
  • 1
  • 2
7
votes
3 answers

How to debug Maven plugin?

I use allure-maven plugin configured in my POM. However, when it fails with ru.yandex.qatools.allure.data.ReportGenerationException: Could not find any allure results I would like to debug the plugin at runtime to see if it has all variables set…
dzieciou
  • 2,910
  • 4
  • 31
  • 59
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
  • 157
  • 5
  • 16
6
votes
1 answer

Save allure report in PDF and email

I have setup allure reporting system with testng using Maven. My boss wants reports in emailable format or PDF format. Is there any why to save allure report in pdf?
Krishna
  • 119
  • 3
  • 10
6
votes
3 answers

How does one run allure plugin in jenkins pipeline?

I'm building pipeline/jenkins-based CI for several projects and want to store allure results just as it would be done in regular build with fast access icon. Is it possible from pipeline?
Etki
  • 1,809
  • 1
  • 13
  • 36
5
votes
1 answer

Send allure report results to aws s3

Currently I am using Ruby, Appium and Allure to generate my reports (allure-rspec). My tests are running on continuous integration (BuddyBuild) and I have a bucket on aws s3. After generating the report structure with all the necessary files, I can…
Rafael C.
  • 1,680
  • 3
  • 21
  • 38
5
votes
4 answers

How to generate allure report

I am new to allure reports and want to generate the allure report. Can anyone help with this? I am trying with a simple example, my project folder containing config.js and test.js and the allure report installed when I run the config file it is…
Suhail Ahmed
  • 361
  • 1
  • 4
  • 16
5
votes
2 answers

How to relax Jenkins security rules for Allure?

I tried to add this in Jenkins Script Console, but it didn't help: "-Dhudson.model.DirectoryBrowserSupport.CSP=default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline';" How to do this? Or what is wrong?
5
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…
1
2 3
54 55