Added init for future package implementations and test run file.

This commit is contained in:
Andru Liu
2024-10-09 15:56:12 -07:00
parent a6de38eb6c
commit b22f728a88
2 changed files with 9 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import unittest
loader = unittest.TestLoader()
suite = unittest.TestSuite()
suite.addTests(loader.discover(start_dir='test', pattern='*.py'))
runner = unittest.TextTestRunner()
runner.run(suite)
View File