import unittest """ This file allows you to launch all the unit tests of the project. Be careful these tests require internet. """ loader = unittest.TestLoader() runner = unittest.TextTestRunner() runner.run(loader.discover('./tests/'))