I am using the tool version MigrationTools-11.9.31, where I am able to migrate the all the workitems, shared quires from TFS on premises to Azure Devops services. But while migrate the Test Suite and Test Plan I am facing the issue as follows.
Please find the log file.
My config file below
Please help me out the same. Thank you!.
-Asit
Related
I am running a azure devops pipeline with sonar cloud and I wanted to exclude selenium folder from sonar cloud with following:
sonar.exclusions=NWP.Selenium/**
And it did this
It was not included in coverage but it was not fully excluded
Does anybody know a way how to fully exclude it ?
I finally figured it out.
The command needed in azure devops pipeline is the following sonar.test.exclusions=NWP.Selenium/**
Now I have this
For some reason Selenium is treated like sonar.test.exclusions
Can anyone advise any free specflow html reporting tools. I've tried:
Configure allure, but it's not supporting netCore
Extent reports, but it's not working with parallel tests
Specflow+runer official isn't free for corporation use
My project technology stack:
-netcore 3.1
-specflow 3.7.38
-nunit
-restSharp
SpecFlow+ Runner is free. To use it you need an also free SpecFlow Account. We changed that 1 1/2 years ago.
But there is something better than SpecFlow+ Runner.
Have a look at SpecFlow+ LivingDoc (https://specflow.org/plus/livingdoc/).
It looks like this:
There are two versions available. SpecFlow+ LivingDoc for Azure DevOps which integrates into Azure DevOps and SpecFlow+ LivingDoc Generator which is a CLI tool that generates a single HTML file.
I would try the later one.
And at the moment, it doesn't require a SpecFlow Account.
If you have problems with creating a SpecFlow account, please contact our support.
Full Disclosure: I am the Community Manager of SpecFlow and SpecFlow+.
I am trying to integrate Allure2 reports with Jira plugin called Xray. So far i managed to generate those reports on local machine and on Jenkins server in pipeline job with Allure plugin.
Also i see that there is an actual Allure plugin called xray-plugin on Allure Framework GitHub, however instructions how to use this plugin are not clear enough for me (for example, where one should put those Jira env variables?).
Can someone here explain in more clear manner how to integrate Allure2 with x-ray?
I am working on one devops project, from selenium I am running test script and a log file is getting generated. How to configure jira to read the log file generated by selenium.. I want to go with API approch but unable to do so. Jenkins I am using as a CI tool here. Any suggestions ?
Hmm. Generally it's a better approach to display your test results in Jenkins instead of creating issues for them automatically. You didn't mention what technology you use (nodejs, java, ...), but typically you let your test runner generate a test results file that jenkins can interprete, so it will display the results nicely. There are various jenkins plugins that can help with that.
If you want to go a step further and still create issues automatically, you can script that in a separate step of your jenkins job, using the JIRA REST API and a scripting language of your choice. It just comes down to parsing the results file and let your script create issues for the failures.
I have been creating codedUI tests for a website in VS2010.
What I would like to do is add these tests to our build process as a form of gated checkin. So if new code produced failed tests then it this code rejected.
does anyone have any experience or know of any resouces regarding this setup.
Thanks in advance
If you are using TFS for your builds you can easily integrate the tests into your build process. If you are using something else for your build process you will need to have MSTEST installed on the build server and another machine to run the tests as an agent.