pytest运行多条用例命令

执行包下所有用例:pytest/py.test 包名

执行单独一个pytest模块:pytest 文件名.py

执行某个类:pytest 文件名.py::类名

执行某个方法:pytest 文件名.py::类名::方法名