如何使用 pytest 指定运行特定测试文件?
指定运行特定文件:pytest 的正确语法
问题:
在使用 pytest 测试 python 项目时,如何指定仅运行某个特定文件?例如,如果希望只运行 test/test_broker.py 文件,该如何操作?
答案:
要指定运行某个文件,可以使用以下语法:
pytest -m test.<filename>
其中
在给定的示例中,要运行 test/test_broker.py 文件,命令应为:
pytest -m test.test_broker
该命令将运行与 test.test_broker 匹配的测试用例。使用此语法可以轻松指定运行特定的测试文件,有助于提高测试效率。
以上就是如何使用 pytest 指定运行特定测试文件?的详细内容,更多请关注硕下网其它相关文章!