mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-02-05 19:55:52 +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) |