A test report is an organized summary of testing objectives, activities, and results. It is created and used to help stakeholders (product manager, analysts, testing team, and developers) understand product quality and decide whether a product, feature, or a defect resolution is on track for release.
Questions tagged [test-reporting]
84 questions
31
votes
3 answers
Display python unittest results in nice, tabular form
I am writing a Pythonic tool which validates the correctness of a certain system. Each validation is written as a Python unittest, and the report looks like:
test_exclude_list_not_empty (__main__.TestRepoLists)
Assert the the exclude list is not…

Adam Matan
- 128,757
- 147
- 397
- 562
18
votes
1 answer
MSTest data driven Test set DisplayName for Rows from DataSource
How can I set the DisplayName of a Data Row in data driven tests, where the data source is a XML and the provider is Microsoft.VisualStudio.TestTools.DataSource.XML.
XML:
…

Sven-Michael Stübe
- 14,560
- 4
- 52
- 103
17
votes
4 answers
Running mocha test but Getting error: ReferenceError: document is not defined
I am using mocha testing framework to test Http rest-api. I want to generate test-report for all test case, but when I ran mocha --reporter html > report.html
Getting following error
/usr/local/lib/node_modules/mocha/lib/reporters/html.js:263
var…

geeks
- 2,025
- 6
- 31
- 49
12
votes
1 answer
How to aggregate test report for mutli-project build with different plugins?
How can I iterate over that test results of each different type of project and collect it in a single report?
Example project setup:
Root Project
|
|- Java Project
|- test task
|
|- Android Library Project (has Build Types)
…

Jared Burrows
- 54,294
- 25
- 151
- 185
9
votes
0 answers
How to generate jacoco reports for specific module in android studio?
I am very new to this environment. I came from a native iOS background.
By using this https://blog.gouline.net/code-coverage-on-android-with-jacoco-92ec90c9355e, I am successfully generating the JACOCO test reports for my unit test class in my…

WeCan
- 547
- 2
- 9
- 23
7
votes
2 answers
Can I use Create React App Jest Testing with a test reporter without ejecting?
I would like to output the results of my jest testing to a file format like JUnit without ejecting from react-scripts.
By using the --json command I can output it to JSON but I was hoping to get a format that Jenkins can process by default.
I cant…

Quinma
- 1,436
- 2
- 17
- 39
4
votes
1 answer
How to send an email with test report in Cypress
I am trying to achieve the following:
Create a simple test report with only names of tests and statuses (Fail/Pass)
Send this report as basic HTML via email.
To achieve that, I need:
A basic reporter instead of the default
Library, which can send…

harmider
- 373
- 6
- 18
4
votes
1 answer
How to generate a useful pytest-bdd test report?
I am using pytest-bdd and want to generate a test report where the Given, When, Then steps are clearly shown and in the case of a failure, it shows you the error.
I have installed pytest-html and successfully created a report but it doesn't support…

Aimee Jones
- 41
- 1
- 2
4
votes
4 answers
cucumber.json report getting overwritten by rerun scenario report
I have got UI Test project and a API test project with same technology stack (JAVA1.8, Cucumber-JVM, JUnit, Maven) and both projects are showing me this problem. Probably because same set of dependencies are present in both.
I have employed the…

N Riay
- 41
- 1
- 5
4
votes
1 answer
possible values for @CucumberOptions(plugin = ...)
I am using @CucumberOptions(plugin = {"pretty"} for test report in cucumber but the default colors for this are really bad..so I am looking to change the font color in output report. Anyone as any idea..how proceed further?

swati
- 41
- 1
- 3
3
votes
1 answer
How to merge Junit XML report in Cypress to integrate with AWS CB
I have initially used Mochaawesome report but cannot integrate with AWS. It turned out I need JUnit XML reporter in order to integrate with code build.
I've created Junit XML report but I don't know how to merge them into one xml file so that it can…

user3601310
- 795
- 2
- 11
- 18
3
votes
0 answers
Importing external test results into Azure DevOps
I am trying to figure out how to import my external test results into Azure DevOps.
This article describes how to publish the results within the same pipeline. But that's not going to help me. We do use Azure pipelines to build and deploy our…

Luc van Vugt
- 314
- 1
- 3
- 10
3
votes
3 answers
Insert screenshots in SpecRun/SpecFlow test execution reports
I'm using SpecFlow with Selenium WebDriver and SpecRun as test runner to create and execute automated test cases and I'm looking for a solution to insert screenshots in the test execution report.
I wrote a method to create screenshots after every…

LeeWay
- 793
- 3
- 16
- 28
2
votes
0 answers
How to generate allure reports directly into a dashboard instead of generating them locally?
I am working with Appium, and I am exploring test reporting tools to integrate them with my project.
Allure report seems to be a good fit for some reasons, but my problem is that allure reports are being generated locally and disappear on every new…

AliOz
- 335
- 2
- 10
2
votes
0 answers
Sonarqube coverage report is missing the number of unit tests
Sonarqube is currently reporting the percent coverage of the project, but not the number of unit tests. I am using jest-sonar-reporter, so a test-report.xml file is being generated after tests run.
Looking that the Sonarqube log, it says test…

Lindsey
- 61
- 1
- 7