We have MSTest tests which automatically run in hourly production.
One of these tests is marked with [Ignore]
attribute because it is not yet ready to run it in our production environment.
Now I want to start that test (only) on my local environment because my local environment is ready for that test.
I try to run that test by clicking on ReSharper's icon on the left side of test code or by clicking Run Selected Tests icon in Unit Test Sessions window and nothing happens.
I fix it currently by commenting out the [Ignore]
line. But now I need to be aware to remove the comment characters (//
) before checking-in the code.
Is there another way to temporarly run an [Ignore]
'd test ?