Python + Pytest + Allure 自动化测试报告教程

Python + Pytest + Allure 自动化测试报告教程

从零开始搭建完整的测试报告生成系统,包含详细步骤和代码示例。


环境准备
  1. 安装Python 3.8+

    bash 复制代码
    # 验证安装
    python --version
  2. 安装依赖库

    bash 复制代码
    pip install pytest allure-pytest
  3. 安装Allure命令行工具

    • 下载Allure

    • 镜像下载Allure

    • 解压并配置环境变量(以Mac/Linux为例):

      bash 复制代码
      # 解压
      unzip allure-commandline-*.zip  
      # 添加到PATH
      export PATH=$PATH:/path/to/allure/bin

项目结构

创建基础目录:

plaintext 复制代码
project/  
├── tests/  
│   ├── test_login.py   # 测试用例  
│   └── conftest.py     # 共享配置  
├── reports/            # 报告输出目录  
└── pytest.ini          # 配置文件

编写测试用例
  1. 创建基础测试(tests/test_login.py
python 复制代码
import pytest

def test_login_success():
    assert "admin" == "admin", "用户名验证成功"

def test_login_fail():
    assert "user" != "admin", "用户名验证失败"

@pytest.mark.parametrize("input", ["a", "b", "c"])
def test_parametrized(input):
    assert len(input) == 1
  1. 添加钩子函数(tests/conftest.py
python 复制代码
import pytest

@pytest.fixture(scope="session")
def setup():
    print("全局初始化")
    yield
    print("全局清理")
  1. 配置Pytest(pytest.ini
ini 复制代码
[pytest]
addopts = -v --alluredir=./reports/allure_raw
testpaths = tests

运行测试并生成报告
  1. 执行测试
bash 复制代码
pytest  # 自动生成原始数据到reports/allure_raw
  1. 生成HTML报告
bash 复制代码
allure generate ./reports/allure_raw -o ./reports/html --clean
  1. 本地查看报告
bash 复制代码
allure open ./reports/html  # 自动打开浏览器

Allure高级用法
  1. 添加测试步骤
python 复制代码
import allure

def test_with_steps():
    with allure.step("打开登录页"):
        print("导航到登录页面")
    
    with allure.step("输入用户名"):
        assert True
    
    with allure.step("验证结果"):
        allure.attach("截图", "image/png")
  1. 添加分类标签
python 复制代码
@allure.feature("登录模块")
@allure.story("成功场景")
def test_categories():
    allure.epic("用户认证系统")
    allure.tag("smoke")
  1. 添加失败截图(需配合Selenium)
python 复制代码
from selenium import webdriver

def test_screenshot():
    driver = webdriver.Chrome()
    try:
        driver.get("https://example.com")
        assert "Example" in driver.title
    except:
        allure.attach(driver.get_screenshot_as_png(), name="失败截图", attachment_type=allure.attachment_type.PNG)
        raise
    finally:
        driver.quit()

常见问题解决
  1. Allure命令未找到

    • 检查环境变量:echo $PATH
    • 重启终端
  2. 报告无数据

    • 确认--alluredir路径正确
    • 检查pytest执行是否报错
  3. 中文乱码

    bash 复制代码
    # 设置Java编码
    export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF-8"

集成到CI/CD

Jenkins配置示例:

  1. 安装Allure Jenkins Plugin

  2. 添加构建后步骤:

    plaintext 复制代码
    [Pytest命令] 
    pytest --alluredir=$WORKSPACE/reports/allure_raw
    
    [Report Path] 
    $WORKSPACE/reports/allure_raw
相关推荐
caimouse7 小时前
ReactOS 图形系统分析(53):系统库存对象 — stockobj.c
c语言·开发语言·spring
南京云森杉木桩7 小时前
水利木桩源头直供,质量可靠价格更优
大数据·python
Aaron - Wistron7 小时前
Python基础教程2/4(复合数据结构)
python
小柯南敲键盘7 小时前
跨境电商图片翻译与视频字幕翻译工具推荐
python·音视频
ZJU_统一阿萨姆8 小时前
【推理优化进阶】通信关键路径:NCCL、RDMA 与计算通信重叠
开发语言·人工智能·语言模型·架构·系统架构
我不是疯子是傻子8 小时前
Qt 程序打包部署全攻略:从 windeployqt 到 Inno Setup 的静默安装与版本迭代实战
开发语言·qt
ZC跨境爬虫8 小时前
LeetCode 13. 罗马数字转整数(多解法详解 + Java Python 实现)
java·python·leetcode
machnerrn8 小时前
智慧交通系列(一)-十字路口车辆闯红灯检测告警抓拍系统(附含数据+源码+模型)
人工智能·python·深度学习
现代野蛮人8 小时前
【深度学习实验】—— 利用 RNN 模型进行心脏病预测
pytorch·python·tensorflow·ml
2601_956319888 小时前
2026年用示例、拆解和练习提升量化理解效率
人工智能·python