pytest.ini规则
-
pytest.ini
是pytest的主配置文件,一般放在项目工程的根目录 - 可以指定pytest的运行方式
- 不能使用任何中文字符!!!(windows)
常用配置项
[pytest]
markers 自定义mark 标签名
addopts 运行时参数(可添加过个,所有参数与命令行一致)
python_files 自定义测试文件命名规则
python_classes = Test_* 自定义测试类命名规则
python——function = test_* 自定义测试方法命名规则
norecursedirs = result log datas test_demo* 运行时忽略某些文件夹