代码之家  ›  专栏  ›  技术社区  ›  clstaudt

pytest:指出由于NotImplementedError导致的测试失败

  •  0
  • clstaudt  · 技术社区  · 2 年前

    我正在使用pytest和Visual Studio Code进行Python库的测试驱动开发。

    许多功能已被起草为存根,但尚未实施,因此它们提出了 NotImplementedError 同样,开发始于失败的测试。

    现在,我想更好地了解测试失败的原因- 未实现错误 或“实际”例外。这可以做到吗?

    enter image description here

    0 回复  |  直到 2 年前
        1
  •  3
  •   Wolf    2 年前

    有可能 mark tests as expected to fail ,所以这样的东西将有助于区分 NotImplementedError s来自测试实际失败:

    import pytest
    
    def func(x):
        return x + 1
    
    def func_var(x):
        raise NotImplementedError
    
    @pytest.mark.xfail(raises=NotImplementedError)
    def test_answer():
        assert func(3) == 5
    
    @pytest.mark.xfail(raises=NotImplementedError)
    def test_answer_var():
        assert func_var(3) == 4
    

    我不能告诉你它在VS中的样子,但控制台版本已经很有前途了:

    
    $> pytest
    ============================= test session starts =============================
    platform win32 -- Python 3.9.6, pytest-7.1.1, pluggy-1.0.0
    rootdir: c:\Projects\Eigene\pytest
    plugins: Faker-13.3.5
    collected 2 items
    
    test_first.py Fx                                                         [100%]
    
    ================================== FAILURES ===================================
    _________________________________ test_answer _________________________________
    
        @pytest.mark.xfail(raises=NotImplementedError)
        def test_answer():
    >       assert func(3) == 5
    E       assert 4 == 5
    E        +  where 4 = func(3)
    
    test_first.py:11: AssertionError
    =========================== short test summary info ===========================
    FAILED test_first.py::test_answer - assert 4 == 5
    ======================== 1 failed, 1 xfailed in 0.14s =========================