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
41
votes
6 answers

Exception java.lang.UnsatisfiedLinkError when trying to open allure-reports in webdriver.io project

I have a small webdriver.io project just for experimenting with it for the first time. I now wanted to add allure reports but when I try to run allure open I get the following exception and I have no idea where I have to look to resolve…
Thorondor
  • 413
  • 1
  • 4
  • 7
17
votes
4 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
  • 662
  • 2
  • 7
  • 13
17
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
  • 9,468
  • 5
  • 48
  • 84
14
votes
6 answers

Is there a way to export Allure Report to a single html file? To share with the team

Right now, I am generating the Allure Report through the terminal by running the command: allure serve {folder that contains the json files}, but with this way the HTML report will only be available to my local because The json files that…
Jake
  • 167
  • 1
  • 2
  • 6
14
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
  • 4,049
  • 8
  • 41
  • 85
13
votes
5 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
  • 339
  • 1
  • 3
  • 10
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
  • 27,789
  • 26
  • 218
  • 353
11
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
  • 4,049
  • 8
  • 41
  • 85
10
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
  • 101
  • 1
  • 1
  • 3
9
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
  • 504
  • 1
  • 9
  • 19
9
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
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.
  • 2,245
  • 4
  • 29
  • 45
8
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
  • 139
  • 1
  • 3
  • 10
8
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
  • 2,042
  • 2
  • 17
  • 40
8
votes
2 answers

Combining 2 reports into one 1 in (testng) allure

My requirement is to combine 2 test results to publish an allure report. Basically, our framework needs run 2 exclusive sets of related tests bases on system status as 2 different test runs. These will run from 2 different JVMs. I need to combine…
smaikap
  • 474
  • 1
  • 7
  • 19
1
2 3
68 69