pytest中xfail、xpass、skip的简单使用

概述:

pytest.skip():跳过当前case,这句之前的代码正常执行,之后的不执行

pytest.xfail():标记当前case为xfail,这句之前的代码正常执行,之后的不执行

@pytest.mark.xfail:如果被注解的case执行通过,则状态为xpass。如果不通过状态为xfail

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import pytest
 
 
class TestDemo(object):
 
    @pytest.fixture()
    def error_fixture(self):
        assert 0
 
    def test_ok(self):
        print('ok')
 
 
    def test_fail(self):
        assert 0
 
    def test_error(self, error_fixture):
        pass
 
    def test_skip(self):
        print('before')
        pytest.skip('skip case')
        print('after')
 
    def test_xfail(self):
        print('before')
        pytest.xfail('xfail case')
        print('after')
 
    @pytest.mark.xfail
    def test_xpass(self):
        assert 1
 
 
if __name__=='__main__':
    pytest.main(['-s', 'test_demo.py'])

  

 

posted @   深藏blueblueblue  阅读(859)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 互联网不景气了那就玩玩嵌入式吧,用纯.NET开发并制作一个智能桌面机器人(三):用.NET IoT库
· 【非技术】说说2024年我都干了些啥
点击右上角即可分享
微信分享提示