pytest.mark简介

pytest.markpytest 框架中的一个功能,它允许你标记测试函数或类,这样你就可以在运行测试时选择性地执行它们。使用标记,你可以实现以下功能:

  1. 条件执行:你可以根据标记来决定哪些测试应该被执行。
  2. 分组:可以将测试分为不同的组,比如按功能、重要性或速度分组。
  3. 参数化 :可以使用 pytest.mark.parametrize 装饰器来为测试函数提供多个参数集。
  4. 跳过测试 :使用 pytest.mark.skippytest.mark.skipif 可以跳过某些测试。
  5. 预计失败 :使用 pytest.mark.xfail 可以标记预计会失败的测试。

以下是一些 pytest.mark 的常见用法:

跳过测试

import pytest

@pytest.mark.skip(reason="not implemented yet")
def test_feature_not_implemented():
    ...

条件性跳过

import pytest

@pytest.mark.skipif(sys.platform == 'win32', reason="does not run on Windows")
def test_linux_only_feature():
    ...

预计失败

python

import pytest

@pytest.mark.xfail(reason="bug 123")
def test_feature_with_bug():
    ...

参数化测试

import pytest

@pytest.mark.parametrize("input,expected", [("3+5", 8), ("2+4", 6)])
def test_add(input, expected):
    assert eval(input) == expected

选择性执行

假设你有一个标记 smoke,你可以通过命令行运行所有带有这个标记的测试:

pytest -m smoke

标记测试函数:

@pytest.mark.smoke
def test_important_feature():
    ...

通过这种方式,pytest.mark 提供了强大的测试组织和管理能力,使得测试更加灵活和可控。

相关推荐
_可乐无糖1 天前
pytest日志总结
pytest
菜鸟小贤贤2 天前
mac安装Pytest、Allure、brew
python·macos·自动化·pytest
qq_433716955 天前
Selenium+Pytest自动化测试框架 ------ 禅道实战
自动化测试·软件测试·selenium·单元测试·pytest·接口测试·压力测试
blues_C5 天前
Pytest-Bdd-Playwright 系列教程(11):场景快捷方式
自动化测试·pytest·bdd·playwright
幸运的星竹5 天前
pytest结合allure做接口自动化
自动化·pytest
blues_C6 天前
Pytest-Bdd-Playwright 系列教程(12):步骤参数 & parsers参数解析
自动化测试·pytest·bdd·playwright
胜天半月子8 天前
pytest | 框架的简单使用
运维·pytest
blues_C8 天前
Pytest-Bdd-Playwright 系列教程(10):配置功能文件路径 & 优化场景定义
自动化测试·软件测试·pytest·bdd·playwright
bigbig猩猩9 天前
pytest中的断言:深入解析与实践
pytest
CSXB999 天前
三十八、Python(pytest框架-上)
python·功能测试·测试工具·单元测试·pytest