When using nose 1.2.1 with Python 3.3.0, I sometimes get an error message similar to the following one
======================================================
You set maxDiff to None.
maxDiff
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):