Config to run all unit tests without test list
The project I'm working on have a lot of unit tests. As of now, I have to create a test lists of unit tests to be run when we compile our solution on the server. I'd like to get rid of this test list and simply say "run all tests" since we are only using unit tests. It would be much easier for us all if we didn't have to maintain a *.vsmdi file. Is there a way to edit the Team Build Type to run all tests. As it is now, it looks like:
<
MetaDataFileInclude="$(SolutionRoot)\CompanySolution\CompanySolution.vsmdi"><
TestList>All Unit Tests</TestList></
MetaDataFile>In our vsmdi file we only have one test list, called "All Unit Tests". Is it possible to use a wildcard instead or something? For example
<MetaDataFileInclude="$(SolutionRoot)\CompanySolution\CompanySolution.vsmdi">
<TestList>*</TestList>
</MetaDataFile>
Cheers,
Chris

