AppHarbor automatically runs your unit test when they build your app. I’d like to have AppHarbor ignore a certain “Category” of tests, specifically, those that test persistance configuration.
So, I’ve add the following attribute to the test class I want ignored
[TestFixture(Category = "Database")]
How do I tell AppHarbor to not run those tests?
Thx!
Here are some resources that’ll let you accomplish this: