赞
踩
前言:pytest 运行用例,如果是本地单个执行,那可以在IDE环境中通过手工点击或者按目录方式执行,但是这种方式都是串行的,实际使用中会有需要并发和重复执行的需求,这里将操作命令梳理下。
依赖安装:
用例并发执行依赖:pip install pytest-xdist
用例重复执行依赖:pip install pytest-repeat
用例基础报告依赖:pip install pytest-html
用例allure报告依赖:pip install allure-pytest (allure配置手册)
命 令:pytest -v -n 4 --html=report.html test_fund_list_detail_check.py -s --count=3
命令解释:
输出报告如下:
报告输出到allure:
pytest -s -q --alluredir report -v -n 4 test_fund_list_detail_check.py -s --count=3
生成allure报告:(需要安装allure)
allure generate report/ -o html --clean
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。