I have some tests that were marked as [Ignore] , but now I want to run them again, so I remove the [Ignore] attribute, but Visual Studio still considers them to be ignored.
What can I do to clear the cache so that I no longer ignore the tests?
Update:
It looks like this data is stored in the vsmdi file:
<TestLink ... name="MethodName" ... enabled="false" />
Thus, it is necessary to delete the vsdmi file or otherwise cause its recovery.
But visual studio caches it, so restarting visual studio seems to fix the problem (sometimes at least).
Mckay source share