Reputation: 748
I have a set of Selenium WebDriver tests that work okay on three different machines; unfortunately, they don't seem to work consistently on a mentor's machine. I'm not sure if I coded the WebDriverWait conditions poorly, or if there is just something odd with my mentor's machine.
I need a consistent environment to run the unit tests in that is friendly for all developers on my team. We have a few test servers at our disposal, but some of our developers prefer to work on local boxes. Most of our developers should have access to Azure Devops, but they tend to prefer to use an in-house solution for CM.
Is there a way for me force my unit tests to run in Azure without having to setup a CI/CD pipeline? If I do that, will the Visual Studio subscribers on my team incur billing charges from Microsoft each time they run my unit tests?
NOTEs:
Upvotes: 0
Views: 97
Reputation: 31003
I'm afraid the answer is NO. The Azure Pipelines supports automatically build and test of code projects to make them available to others. It works with just about any language or project type. Azure Pipelines combines continuous integration (CI) and continuous delivery (CD) to constantly and consistently test and build your code and ship it to any target. I don't see other tools in Azure to run unit tests in Azure without pipeline.
Upvotes: 1