Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以在不运行测试的情况下获取 Django 项目中所有测试的列表?我希望有类似的东西./manage.py test --list。
./manage.py test --list
在我看来,更正确的方法是使用实际的工具来运行测试。例如在鼻子的情况下:
./manage.py test <app> --verbosity 2 --collect-only
仅供参考,py.test还可以--collectonly选择打印测试而不是执行。
--collectonly
另见: