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
3
votes
0 answers

Why do failing tests cause entire Jenkins build to be marked as "UNSTABLE" by Allure plugin?

I have set up Jenkins test jobs that will run Cucumber tests and want my jobs to always be successful up until a certain threshold (which I am controlling). The Allure plugin is always marking my builds as "UNSTABLE" when I have failed tests but I…
samkul
  • 31
  • 3
3
votes
1 answer

Access allure reports while test is running

We're using TestNG+Allure reports for our java testing infrastructure. The test might take up to 4 hours to run. We want to see the reports of tests that are already done in the suite. Can I see a report in between? How can one implement it? I'm…
iTayb
  • 12,373
  • 24
  • 81
  • 135
3
votes
1 answer

Using aspectJweaver while running testNG tests programatically

I am using a java class to generate testNG xml dynamically from an excel file. I am using allure-cli to generate allure reports at the end of my test execution. I am using maven-surefire-plugin with this following configuration. …
Manmohan_singh
  • 1,776
  • 3
  • 20
  • 29
3
votes
1 answer

AllureConfig output directory path NUnit3

I have created a simple test class and added [AllureNUnit] attribute to test class according to this [TestFixture] [AllureNUnit] public class Class1 { [Test] public void CreateHierarchy() { } } I also created allureConfig.json file…
Alexcei Shmakov
  • 2,203
  • 3
  • 19
  • 34
3
votes
1 answer

Gradle: Run of a single test gives an error: Caused by: org.gradle.api.InvalidUserDataException property '$1' as it is a directory

When I try to run a single test in commandline like this: gradle test --tests *MatchfichePageTest I get the following error: A problem was found with the configuration of task ':test'. > Cannot write to file…
3
votes
1 answer

Is Allure report supported by Travis?

I couldn't find any information about integration of Allure report with Travis. Is it possible to generate Allure report on Travis?
Maxim Vershinin
  • 531
  • 1
  • 6
  • 12
3
votes
1 answer

How to integrate Allure Report in karate API automation project

We are using Karate heavily for various projects and though the report generated using karate Reports are more than anyone would need. I am still interested in getting Allure integrated in the mix. Added allure-junit4 dependency and added allure…
Amit Vyas
  • 103
  • 2
  • 8
3
votes
1 answer

pytest - use plugin from another plugin

I made a new plugin using this repo with cookiecutter and i want to use another plugin from it. for example: when I run pytest --useplugin this should run :pytest --anotherplugin=12345 --useplugin (more command line arguments run in the…
3
votes
4 answers

How to add attachments to Allure report in C#?

The Allure framework is a really beautiful framework for test reporting. Yet it has rather bad documentation for C#. I want to add some things to my allure report: Debug log (like all things I write to debug) Screenshot A file How to do it? I have…
Denis Koreyba
  • 3,144
  • 1
  • 31
  • 49
3
votes
1 answer

Allure Reports Team City plugin causing builds to just hang on build step that runs tests

I'm trying to get allure reporting working as part of an NUnit project in C# using Selenium WebDriver. Following the documentation for installing allure seems to work fine on a local machine but I'm trying to get the Team City plugin to also work…
Ant
  • 31
  • 1
3
votes
1 answer

Getting error in allure download in jenkins

When downloading allure in jenkins, the following error/stack trace is showing up. How could I resolve this? Unpacking https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.zip to…
user3529756
  • 31
  • 1
  • 2
3
votes
1 answer

Cucumber-JVM 3 - Allure 2 Test Report with Maven

At this point with the recent release of cucumber-jvm 3.x.x, there does not seem to be a viable tutorial out there except for the older 1.x.x (docs). I am unsure which one to use? allure-java (which appears to have…
k_rollo
  • 5,304
  • 16
  • 63
  • 95
3
votes
1 answer

Can @Step be dynamic in Allure?

I have a Allure step method for a parametrized JUnit 5 and Selenium test which receives a test data object containing all the test data for the parametrized test. This main step method calls other sub step methods. A sub step is only executed if its…
3
votes
3 answers

Allure results don't generate on Maven build

I'm running a Selenium test with Maven and would like to have an Allure report generated in the end. Unfortunately, I get an error message. Maven command line: clean -Dtest=TestLogs test allure:report Error message: [INFO] ---…
Zoette
  • 1,241
  • 2
  • 18
  • 49
3
votes
1 answer

How to generate Allure2 report for Xunit.net project

Does Allure2 support xunit project? I do not find it in the Allure2 documentation https://docs.qameta.io/allure/2.0/ But is there some adapter to implement it?
Megha
  • 509
  • 5
  • 16