pytest fixture

定义fixture跟定义普通函数差不多,唯一区别就是在函数上加个装饰器@pytest.fixture()
fixture命名不要以test开头,跟用例区分开,fixture是有返回值的,没有返回值默认为None
用例调用fixture的返回值,直接就是把fixture的函数名称当做变量名称

作用:定义一个标记,在其他的测试用例里面作为第一个参数,开直接引用

import pytest
@pytest.fixture()
def init():
    print('init')
    return 1

def test1(init):
    print('test1')

def test2(init):
    print('test2')

if __name__ == '__main__':
    pytest.main(['sv','test06.py'])

你可能感兴趣的:(pytest fixture)