◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
在 pytest 中指定运行特定文件
在 pytest 中运行特定文件(如 test/test_broker.py)的语法如下:
pytest -m test.test_amqp
这里的 -m 选项用于指定要运行的模块或类。它后面的参数需要遵循模块或类的名称空间格式,例如:
在本文中,我们希望运行 test/test_broker.py,它对应于模块 test.test_amqp。因此,我们使用 pytest -m test.test_amqp 命令即可在 pytest 中指定运行该文件。
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。