I\'m using Python\'s unittest library and all the tests succeed, but I still get a traceback and I can\'t understand how I can fix the problem.
unittest
To avoid the end of execution traceback:
if __name__ == '__main__': unittest.main(exit=False)