python 在pytest fixture中即时构建子类

Posted

tags:

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

def BaseRobot(object):
    def __init__(self):
        assert self.owner

@pytest.fixture
def robot():
    return type('TestRobot', (BaseRobot,), dict(owner='antonio'))()
  
# instead of
def TestRobot(BaseRobot):
    owner = 'antonio'

@pytest.fixture
def robot():
    return TestRobot()

以上是关于python 在pytest fixture中即时构建子类的主要内容,如果未能解决你的问题,请参考以下文章

Python测试框架pytest(23)插件 - pytest-pickedpytest-lazy-fixture

python 在同一级别和mock.patch中编写pytest fixture

python接口自动化12-pytest前后置与fixture

Python Pytest自动化测试 fixture与fixture互相调用

python学习-pytest-fixture

python-pytest学习(十三)-fixture之autouse=True