I am using unittest to test my Flask application, and nose to actually run the tests.
unittest
nose
My first set of tests is to ensure the testing enviro
You can skip entire test cases by calling skipTest() in setUp(). This is a new feature in Python 2.7. Instead of failing the tests, it will simply skip them all.
skipTest()
setUp()