mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
6 lines
204 B
Python
6 lines
204 B
Python
import unittest
|
|
from tests.test_bot import BotTest
|
|
|
|
if __name__ == '__main__':
|
|
testsuite = unittest.TestLoader().loadTestsFromTestCase(BotTest)
|
|
unittest.TextTestRunner(verbosity=1).run(testsuite)
|