How to set self.maxDiff in nose to get full diff output?
You set maxDiff to None. But you will have to actually use a unittest.TestCase for your tests for that to work. This should work. class MyTest(unittest.TestCase): maxDiff = None def test_diff(self): <your test here>