pytest自动化error: unrecognized arguments: --html=report/report.html

最近在研究pytest接口自动化框架,想生成报告,一直报如图错误,大概的意思是识别不了输入的参数

pytest自动化error: unrecognized arguments: --html=report/report.html_第1张图片

pytest生成报告需要pytest -html库文件,所以本地需要安装此库

在cmd下安装库文件:

pip install pytest-html

pytest自动化error: unrecognized arguments: --html=report/report.html_第2张图片

再次输入pytest --html=report/report.html

pytest自动化error: unrecognized arguments: --html=report/report.html_第3张图片

 

pytest测试框架和RobotFramework都是基于python的自动化框架,RobotFramework基于GUI,入门简单,用例管理清晰,但是用例库大了之后,会有卡顿问题,所以后期需要从技术或者工程角度解决,现在在研究pytest,比一比两个框架问题

你可能感兴趣的:(Pytest测试框架,python)