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