加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pytest.ini 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
shiyinyi 提交于 2023-11-02 16:07 . wms整体框架
[pytest]
;addopts:配置命令行参数,用空格进行分隔
;可执行标记为mark的对应用例,用or表示标记为demo或者smoke的用例都会执行
;--alluredir=./reports/
addopts =
-vs
--clean-alluredir
--alluredir=./reports/
-m "test1"
-n 0
--reruns=0
;注册 mark 标记
markers =
smoke: 冒烟用例
test: 仅供调试的用例
testNow: marks tests as testNow
test1 : temporary test
;执行的时候使用 pytest -m smoke
minversion = 5.0
;测试用例的路径,可自己配置,
;../pytestproject为上一层的pytestproject文件夹
;./testcase为pytest.ini当前目录下的同级文件夹
;改变用例的查找路径规则,当前目录的testcase文件夹下的所有
testpaths =./testcases/
;模块名的规则,配置测试搜索的模块文件名称
python_files = test_*.py
;类名的规则,配置测试搜索的测试类名
python_classes = Test*
;方法名的规则,配置测试搜索的测试函数名
python_functions = test_*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化