Huxley Deng
b6742a4668
New: basic project structure. New: main.py script. New: basic unit tests and testing script.
8 lines
179 B
Python
8 lines
179 B
Python
import unittest
|
|
|
|
loader = unittest.TestLoader()
|
|
start_dir = "./haocrowd/tests/"
|
|
suite = loader.discover(start_dir)
|
|
|
|
runner = unittest.TextTestRunner(verbosity=2)
|
|
runner.run(suite) |