mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
5 lines
152 B
Python
5 lines
152 B
Python
import unittest
|
|
|
|
if __name__ == '__main__':
|
|
testsuite = unittest.TestLoader().discover('.')
|
|
unittest.TextTestRunner(verbosity=1).run(testsuite)
|