pytest fixture

Posted 坚持不放弃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest fixture相关的知识,希望对你有一定的参考价值。

import pytest


@pytest.fixture
def login():
    print("登录操作")
    username = "xuefeifei"
    return username

class TestDemo:
    def test_a(self,login):
        print(f"a name = {login}") #使用login的返回值

    def test_b(self):
        print("b")

    def test_c(self):
        print("c")

 

以上是关于pytest fixture的主要内容,如果未能解决你的问题,请参考以下文章

07-pytest-fixture实现teardown

10-pytest-parametrize中使用fixture

33-pytest-内置fixture之pytestconfig使用

pytest文档62-内置fixture之request

12-pytest-fixture使用别名

pytest之fixture