Reputation: 17417
I'd like to get MSTests working in TeamCity without having to install visual studio on the build agent. I'm looking to see if anyone has accomplished this or has any insight into how to make it happen.
Upvotes: 3
Views: 2052
Reputation: 778
In case anyone revisits this - they have introduced Visual Studio Agents that includes a standalone version of mstest http://www.microsoft.com/en-us/download/details.aspx?id=1334
Upvotes: 4
Reputation: 746
I think MSTest.exe can be run as a standalone process. While it's not ideal, you can try copying the executable out of your VS install, and onto your build server (it can be found in [Install Base]\Microsoft Visual Studio 9.0\Common7\IDE)
I haven't tried this, so keep that in mind. It may take some trial and error to carry over any dependencies that the app may need, but I don't see any reason why you can't get it to work (eventually).
Upvotes: 0