allure测试报告的基础用法

Allure 测试报告的用法:
简介:Allure框架是一个灵活的轻量级多语言测试报告工具,它不仅以web的方式展示了简介的测试结果,而且允许参与开发过程的每个人从日常执行的测试中最大限度的提取有用信息。

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# @Time    : 2021/2/2 10:23
# @Author  : Sun
# @Email   : 8009@163.com
# @File    : test_five.py
# @Software: PyCharm

import allure
import pytest


class Severity(object):
    Blocker="blocker"
    CRITICAL="critical"
    NORMAL="normal"
    MINOR="minor"
    TRIVIAL="trivial"
    
@pytest.fixture()
def login():
    print("前置条件,请先登录")

@allure.step("one")
def one():
    print("这是第一步操作!")
    
@allure.step("two")
def two():
    print("这是第二步操作!")
    
@allure.step("three")
def three():
    print("这是第三步操作!")
    
@allure.epic("epic对大Story的一个描述性标签")
@allure.feature("功能测试模块")
class TestOne(object):
    @allure.testcase(url="http://www.testclass.net/post/2021_automation")
    @allure.issue("http://www.testclass.net/post/2021_automation")
    @allure.title("正常账户和密码测试")
    @allure.story("账户为admin,密码root")
    @allure.description("上面的代码会捕获一个类型为 ExceptionName 的异常。如果您想让 "
                        "catch 块能够处理 try 块抛出的任何类型的异常,则必须在异常声明的括号内使用省略号 .")
    @allure.severity(severity_level=Severity.NORMAL)
    @pytest.mark.usefixtures("login")
    def test_one(self):
        one()
        two()
    
    @allure.story("账户为admin,密码admin")
    def test_two(self):
        two()
        three()
        
        
@allure.epic("这是一个新的一个描述性标签")
@allure.story("UI测试模块")
class TestTwo(object):
    @pytest.mark.usefixtures("login")
    @allure.title("账号:admin 密码:123456")
    def test_three(self):
        print("=========================================")

    @allure.title("账号:admin 密码:123456")
    def test_four(self):
        print("-----------------------------------------")
    

运行脚本后查看生成的测试报告:
allure测试报告的基础用法
allure的一些基础操作:
allure测试报告的基础用法
详细操作可以参考官方链接:官网地址

上一篇:Jenkins上实现Python + Jenkins + Allure Report 接口自动化测试持续集成,并生成allure-report测试报告


下一篇:前端自动化测试----百度搜索功能实战