I have attributes on certain tests that I ideally don\'t want to run on every build. Most of my tests are normal unit tests and I do want them to run on every build.
The only "solution" (or better workaround) I found to work is to specify a "FullName" filter. Basically I usually structure my solution like
and so on. Now I can specify a filter in the Test Explorer like FullName: "UnitTests" which seems to work.
(I'd expected to be able to use a regex within the search name but it doesn't seem to be supported.)
