Python自动化笔记-Allure

本文介绍了Allure测试报告框架的安装与使用。通过在Windows上解压缩并配置环境变量,或在Linux中使用命令行安装,然后利用pytest生成测试数据。通过allure指令,可以创建JSON格式的测试报告,并进一步转换为HTML格式,用浏览器查看详细的测试结果。遇到问题如环境变量配置、权限错误等,可参照相关教程解决。
摘要由CSDN通过智能技术生成

Allure--一款测试报告框架。

doc:https://docs.qameta.io/allure

安装路径:https://github.com/allure-framework/allure2/releases

Windows下载zip包->解压(pytest的安装路径)->进入bin目录->运行allure.bat->将allure的bin目录加到PATH环境变量中去(加成功后cmd命令框输入allure --vresion即可查看安装的allure版本)

linux命令安装allure-pytest:

pip install allure-pytest

新建一个python文件,定义几个测试方法:

import pytest

def test_success():
    """this test succeeds"""
    assert True

def test_failure():
    """this test fails"""
    assert False

def test_skip():
    """this test is skipped"""
    pytest.skip('for a reason!')

def test_broken():
    raise Exception(
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值