安装pytest pip install pytest 检查安装的pytest版本信息是否正确 pytest --version 创建测试 def func(x): return x+1 def test_answer(): assert func(3) == 5 运行多个测试 pytest会运行当前目录及子目录下的所有以test_开头或_test结尾的文件,文件匹配方式遵循Standard test discovery rules 判断是否发生了指定的异常 使用raises可以判断代码是否抛出异常 import pytest def f(): raise SystemExit(1) def test_mytest(): with pytest.raises(SystemExit): f() 使用quiet模式执行测试 查看官方文档 import requests help(requests)
标签:SystemExit,初识,pytest,raises,test,import,def From: https://www.cnblogs.com/qmm-1000/p/17079192.html