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>
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>