mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-05-10 04:58:14 +08:00
9 lines
197 B
Python
9 lines
197 B
Python
import unittest
|
|
|
|
loader = unittest.TestLoader()
|
|
suite = unittest.TestSuite()
|
|
|
|
suite.addTests(loader.discover(start_dir='test', pattern='*.py'))
|
|
|
|
runner = unittest.TextTestRunner()
|
|
runner.run(suite) |