didier/tests/run_tests.py
Stijn De Clercq 09cad58f43 Don't snipe steam codes, fixes #78
(bot commands can be sniped)
2021-06-30 21:55:17 +02:00

6 lines
166 B
Python

import unittest
if __name__ == "__main__":
suite = unittest.TestLoader().discover('.', pattern="test_*.py")
unittest.TextTestRunner(verbosity=3).run(suite)