Pytest 单元测试框架
1、pytest 是 python 的第三方单元测试框架,比自带 unittest 更简洁和高效 2、安装 pytest pip install pytest 3、验证 pytest 是否安装成功 pip show pytest 4、使用 pytest 执行测试需要遵行的规则 .py 测试文件必须以 test_ 开头(或者以 _test 结尾) 测试类必须以 Test 开头,并且不能有 init 方法 测试方法必须以 test_ 开头 断言必须使用 assert,pytest 中没有自带的断言方法 5、实例讲解 demo1 demo1 发现结果中没有用例的执行打印结果 # test_demo.py import pytest def test_01(): print ( " test_01 " ) def test_02(): print ( " test_02 " ) def test_03(): print ( " test_03 " ) if __name__ == ' __main__ ' : pytest.main() # 结果如下 ============================= test session starts ============================= platform win32 -- Python 3.6.0, pytest