07-pytest-fixture实现teardown
Posted 爱学习de测试小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了07-pytest-fixture实现teardown相关的知识,希望对你有一定的参考价值。
目录
代码示例
# -*- coding: utf-8 -*-
# @Time : 2021/10/10
# @Author : 大海
import pytest
@pytest.fixture(autouse=True)
def start():
print("登录")
yield
print("执行teardown!")
print("登出")
def test_1():
print("业务流程1")
def test_2():
print("业务流程2")
def test_3():
print("业务流程3")
if __name__ == "__main__":
pytest.main(["-s", "test_11.py"])
以上是关于07-pytest-fixture实现teardown的主要内容,如果未能解决你的问题,请参考以下文章