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
相关推荐
IVEN_16 分钟前
只会Python皮毛?深入理解这几点,轻松进阶全栈开发
python·全栈
Ray Liang1 小时前
用六边形架构与整洁架构对比是伪命题?
java·python·c#·架构设计
AI攻城狮2 小时前
如何给 AI Agent 做"断舍离":OpenClaw Session 自动清理实践
python
千寻girling2 小时前
一份不可多得的 《 Python 》语言教程
人工智能·后端·python
AI攻城狮5 小时前
用 Playwright 实现博客一键发布到稀土掘金
python·自动化运维
曲幽5 小时前
FastAPI分布式系统实战:拆解分布式系统中常见问题及解决方案
redis·python·fastapi·web·httpx·lock·asyncio
孟健20 小时前
Karpathy 用 200 行纯 Python 从零实现 GPT:代码逐行解析
python
码路飞1 天前
写了个 AI 聊天页面,被 5 种流式格式折腾了一整天 😭
javascript·python
曲幽1 天前
FastAPI压力测试实战:Locust模拟真实用户并发及优化建议
python·fastapi·web·locust·asyncio·test·uvicorn·workers