What exactly I need to do to make python\'s unittest work? I checked the official documentation, SO questions and even tried using nose, b
unittest
nose
unittest.main() will run all the function that begin by "test". So you should rename your functions
class EchoTest(unittest.TestCase): def testfoo(self): self.assertTrue(1==1) def testbar(self): self.assertTrue(1==2)