About
This blog is mostly about my work, but expect an occasional home project, productivity tip and tooling review.Search
Categories
- Conference (21)
- Development (208)
- Security (17)
- Test (32)
- Tooling (166)
- Uncategorized (168)
Most used tags
Tag Archives: hosted build controller
Reproduce unit test failures from Hosted Build Controller
Our builds succeed with warnings. After investigation of the output we noticed failing unit tests. But local they run fine. Here’s what we did to troubleshoot and fix the issue. First we downloaded the build output from the drop location. … Continue reading
Posted in Development
Tagged hosted build controller, unittest, visual studio online, visualstudio.com, xunit
1 Comment
Run Selenium from visualstudio.com
You can host your project in Visualstudio.com and still run selenium tests in the build. The hosted build controller does not support it (details) and cannot be adjusted. Why not create your own Build Controller in Azure VM? Here is … Continue reading
Execute xunit tests on hosted build controller
You can use xunit to unit test on the hosted build controller by installing the xunit.runner.visualstudio package. But when the Build is done, there was an error. The testrunner tries to discover the unittests in xunit.runner.visualstudio.testadapter.dll. Why? Because it matches … Continue reading