When using nosetests for Python it is possible to disable a unit test by setting the test function\'s __test__ attribute to false. I have implemented this usin
__test__
You can also use unittest.skip decorator:
import unittest @unittest.skip("temporarily disabled") class MyTestCase(unittest.TestCase): ...