- Pytest教程
- Pytest - 主页
- Pytest - 简介
- Pytest - 环境设置
- 识别测试文件和函数
- Pytest - 从基本测试开始
- Pytest - 文件执行
- 执行测试套件的子集
- 测试名称的子字符串匹配
- Pytest - 对测试进行分组
- Pytest - 装置
- Pytest-Conftest.py
- Pytest - 参数化测试
- Pytest - Xfail/跳过测试
- N 次测试失败后停止测试套件
- Pytest - 并行运行测试
- XML 格式的测试执行结果
- Pytest - 总结
- Pytest - 结论
- Pytest 有用的资源
- Pytest - 快速指南
- Pytest - 有用的资源
- Pytest - 讨论
Pytest - Xfail/跳过测试
在本章中,我们将了解 Pytest 中的 Skip 和 Xfail 测试。
现在,考虑以下情况 -
- 由于某些原因,测试在一段时间内不相关。
- 一项新功能正在实施,我们已经为该功能添加了测试。
在这些情况下,我们可以选择使测试失败或跳过测试。
Pytest 将执行 xfailed 测试,但不会被视为部分失败或通过的测试。即使测试失败,也不会打印这些测试的详细信息(请记住 pytest 通常会打印失败的测试详细信息)。我们可以使用以下标记来使测试失败 -
@pytest.mark.xfail
跳过测试意味着该测试将不会被执行。我们可以使用以下标记跳过测试 -
@pytest.mark.skip
稍后,当测试变得相关时,我们可以删除标记。
编辑test_compare.py我们已经必须包含 xfail 和skip 标记 -
import pytest @pytest.mark.xfail @pytest.mark.great def test_greater(): num = 100 assert num > 100 @pytest.mark.xfail @pytest.mark.great def test_greater_equal(): num = 100 assert num >= 100 @pytest.mark.skip @pytest.mark.others def test_less(): num = 100 assert num < 200
使用以下命令执行测试 -
pytest test_compare.py -v
执行后,上述命令将生成以下结果 -
test_compare.py::test_greater xfail test_compare.py::test_greater_equal XPASS test_compare.py::test_less SKIPPED ============================ 1 skipped, 1 xfailed, 1 xpassed in 0.06 seconds ============================