1、pytest.ini
指定用例目录,文件,类,函数
注意pytest.ini 文件编码必须为ANSI格式,否则可能读取失败
[pytest]
#addopts= -vs -m="smoke or userlogin"
#addopts= -vs --alluredir ./temp --clean-alluredir
addopts= -vs
testpaths=./day05 #目录
python_files = test_*.py *_test.py #模块
python_classes = Test* # 类名
python_functions = test_* # 方法名
markers =
smoke: 冒烟用例
userlogin: 用户登录