I can add an attribute on a test to ignore it
[Test]
[Ignore("Foo Bar")]
Is there any way to ignore all tests in a file (at the TestFixture level) ?
[TestFixture, Ignore("reason")]
public class YourTestFixture { }
Or if you prefer to break your attributes out to one per line:
[TestFixture]
[Ignore("reason")]
public class YourTestFixture { }