摘要:
终端运行: pytest -v test_desktop.py --alluredir reults 非终端运行: 在app_main.py中运行,然后在pycharm右击运行 if __name__ == '__main__': pytest.main(["test_desktop.py", '- 阅读全文
摘要:
安装jenkins插件 登录jenkins服务器进入插件管理安装:Allure Jenkins Plugin 创建item 构建后操作path选择 你执行allure server 指定的目录 比如:sudo allure serve reults/ 查看allure报告: 阅读全文
摘要:
依赖安装: # 安装allure-pytest pip3 install allure-pytest --index-url https://pypi.douban.com/simple # 请先卸载掉 pytest-allure-adaptor # 安装allure启动一个服务来读取报告 http 阅读全文
摘要:
依赖安装 # 安装pytest-html插件 pip3 install pytest-html # 执行命令生成报告 pytest --html=report.html # 指定到对应的文件夹中 pytest --html=report/report.html # 这里不要加 . 运行测试 test 阅读全文
摘要:
创建两个test_XX.py文件分别测试桌面和服务器 test_desktop.py import pytest @pytest.mark.Desktop_Professional @pytest.mark.特性1 def test_1(): print('执行了桌面专业版特性1用例') asser 阅读全文
摘要:
import pytest @pytest.mark.Desktop_Professional @pytest.mark.特性1 def test_1(): print('执行了桌面专业版特性1用例') assert True @pytest.mark.Desktop_Professional @p 阅读全文