1、安装pytest
pip install pytest
2、发现用例规则
3、运行方式
4、运行参数
5、pytest框架结构
6、fixture
for example:
import pytest标签:__,fixture,add,pytest,例子,简单,main From: https://www.cnblogs.com/seven7777/p/17078526.html
def add(x,y):
return x + y
def test_add():
assert add(3,5) == 8
if __name__ == '__main__':
pytest.main()