本文以Python的conftest.py文件为例,为大家分析conftest.py文件的使用方法。阅读完整文相信大家对conftest.py文件的使用方法有了一定的认识。
1.conftest.py与test.py放在同一个目录下,用于实现session级别的全局唯一
2.初始化操作举例
在conftest.py文件中,定义一个类,类变量在在初始化方法中实例化,在里面py文件中就都可以使用该类.变量来调用该对象,保证只初始化一次
## conftest.py
class Test1:
dr = None # type:
classss = None # type:Ss
class Ss:
def __init__(self):
self.__cs = Test1.dr
def pr1(self):
print("方法1" + self.__cs)
def pr2(self):
print("方法2" + self.__cs)
def close(self):
print("退出")
print("结束")
@pytest.fixture(scope='session', autouse=True)
def chishihua(request):
Test1.dr = "ces"
Test1.classss = Ss()
print("所有")
def fin():
Test1.classss.close() # 关闭操作
request.addfinalizer(fin)
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。