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