Understanding wildcards when specifying test assemblies for the MSTest runner in TeamCity 7
Basically I want to specify "all files that end with Test.dll", also known as
*.Test.dll.
*.Test.dlldoesn't work, presumably because it matches only files in the current working directory.
However, I didn't have any luck with
**\*Test.dlleither. For some reason I had to use
**\bin\**\*Test.dllfor it to find any test assemblies it could run.
The TeamCity 7 documentation for MSTest doesn't say anything about wildcards, as far as I can tell. Can someone help me understand wildcards when specifying test assemblies for the MSTest runner in TeamCity 7?
Is it possible to specify files matching a certain file name pattern, but in whatever directory?
Please sign in to leave a comment.