目录结构如下: (image_search_engine) ╭─pon@T4GPU ~/code/work/ponponon/image_search_engine ‹master*› ╰─➤ tree testing testing ├── __init__.py ├── resource │ ├── emoji001.jpg │ ├── emoji002.jpg │ ├── emoji003.jpg │ └── s.jpg ├── test_meta.py └── test_sample.py 运行测试命令 ╰─➤ python -m unittest testing ---------------------------------------------------------------------- Ran 0 tests in 0.000s OK unittest 会读取所有 test 开头的 .py 文件,但是我的两个 test_meta.py 和 test_sample.py 居然没有被读取? 但是写成 `python -m unittest testing.test_sample` 和 `python -m unittest testing.test_meta` 是可以的,直接 `python -m unittest testing` 却不行,为什么?