Example
比如,我在Airflow上新增了一个feature,我想测试一下,就需要在tests目录下新增一个功能测试。
目录结构大概是这样的:1234├── airflow│ ├── model.py│ ├── test│ │ ├── test_model.py
测试代码 test_model.py如下:123456import unittestfrom model import BaseModelclass TestModel(unittest.TestCase): def test1(self): print('here is the test logic')
来主目录下,可以通过运行如下命令来启动测试:1python -m unittest test.test_model