我为我的 django 视图编写了一个小单元测试。我的项目结构就像
项目名/
apps/
module1/
tests.py
module2/
tests.py
这是我的目录结构,我正在使用以下命令执行测试:
$python manage.py test_coverage module1 module2 -v2
然后它很好地执行了测试,但是现在我稍微更改了目录结构,我创建了一个新目录 tests/ 我保留了所有测试文件
项目名/
apps/
module1/
tests/
test_basic.py
test_detail.py
现在我可以使用上述相同的命令执行那些在目录中的测试,它们是执行此类测试的任何替代方法吗?