Questions tagged [test-results]

46 questions
15
votes
3 answers

How to display the Test Result trend in Jenkins?

I use the option "Publish xUnit test result report" and it loads my *.xml. I thought that would be enough to display the Test Result trend (the graphics) but it doesn't. Am I missing something?
Cher
  • 2,789
  • 10
  • 37
  • 64
5
votes
0 answers

How to include test category in visual studio test results

How do I make sure the test categories I used in my unit tests are included in the test results. So that I could use the category to filter my tests or generate a html using trx2html grouped by the category. [Trait("Category", "1")] public class…
Sunil Buddala
  • 1,123
  • 1
  • 10
  • 22
4
votes
2 answers

Cypress tests with mocha multi reports; not able to get aggregated results for all test spec

Cypress tests with mocha multi reports don't show results from all the tests My test structure looks like so: cypress  integration   module1    module1test1_spec.js    module1test1_spec.js   module2    module2test1_spec.js …
kapalkat
  • 396
  • 2
  • 4
  • 11
3
votes
2 answers

TFS tbl_TestResult table is very big

Our TFS database size was growing really quick and I figured out that the issue was with tbl_TestResult table. I am not sure why it is growing that fast. It seems there will be a record for each test case. In my case, we have more than 1000 test…
Dilshod
  • 3,189
  • 3
  • 36
  • 67
2
votes
1 answer

get test status after each test in cypress

I am looking for an option to get the name and the result (fail/pass) of each test to save this to an external file. How can I get this information easily? Currently, I can get only the title within the it() section…
harmider
  • 373
  • 6
  • 18
2
votes
1 answer

Automatic report after test in TestCafé Studio

Is it possible to set the TestCafé Studio so that after a test run an automatic report in the desired format (for me e.g. Xunit) is exported? The summarized reports that can be manually exported from the view would be great for my DevOps purposes if…
2
votes
1 answer

Run tests in TestCafé Studio via command

How can I execute a test via command in a way that the test run is shown with all its results in TestCafé Studio afterwards? I'm using: npx testcafe [browser] [TestCafe file] The test is executed but the results are only visible in the console. Is…
2
votes
0 answers

Configuring Test Results Analyzer Jenkins Plugin for a pipeline project

I am trying to configure my Jenkins pipeline project that runs pytest tests with the Jenkins Test Results Analyzer plugin. Everything online says that under the job configuration at post build actions add the plugin, but since this is not in the…
2
votes
2 answers

Get TestResult in MSTest TestCleanup in C#

I want to use TestResult in TestCleanup() to get some infos on the tests. But I don't know how to initialize TestResult object and get it. I want the same behavior that TestContext object. Thanks private static TestContext…
2
votes
0 answers

Test results for group of tests (ordered test) are displayed only like one test result per group

in our company, we have many UI tests which are arranged in playlists (*.orderedtest file). In release definition are running this tests like ordered tests: VSTest_configure. After running tests, the test results are displayed only like one test…
1
vote
1 answer

JUnit test reporting out of Azure DevOps Server - Branch Info not passed to Analytics

We're running Ranorex-Tests in our Release Pipeline and reporting the test results at the end via the Publish test results task. Issue is that our Ranorex Pipeline is pretty much handcrafted and I can't seem to find how I can pass the branch name…
1
vote
0 answers

Is there a way to convert "Test Results Analyzer" or "Test Result" Jenkins plugins reports to beautiful HTML

Is there a way to covert "Test Results Analyzer" or "Test Result" Jenkins plugins reports to beautiful HTML. I want to share the report only and did not want anyone to login or see reports via Jenkins UI.
Parag Gupta
  • 143
  • 1
  • 6
1
vote
0 answers

Is it possible to publish test results to a repo in Azure DevOps?

I have a suite of unit tests that I would like to use as a source of documentation (to supplement our other documentation). The unit tests are written in MSTest and we use the "Visual Studio Test Task" within our Azure DevOps builds to ensure they…
1
vote
1 answer

How to access Junit test results of downstream pipeline job

I am trying to use import hudson.tasks.junit.TestResult to get the count of Junit tests from a downstream job and unable to get count. Expected: Able to pull count from downstream. Actual: testResultaction is null always. stage ('Starting Smoke…
swami
  • 11
  • 3
1
vote
0 answers

TestResult class - How to instantiate for current run?

For context, I am using NUnit with Selenium, for GUI web testing. I am using NUnit for control flow to ensure there are setup and teardown steps before each test. I have a method that builds a basic log file: public class TestMetaData { public…
1
2 3 4