mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-18 04:55:47 +02:00
6 lines
166 B
Python
6 lines
166 B
Python
import unittest
|
|
|
|
|
|
if __name__ == "__main__":
|
|
suite = unittest.TestLoader().discover('.', pattern="test_*.py")
|
|
unittest.TextTestRunner(verbosity=3).run(suite)
|