gpt4 book ai didi

python - 为什么测试功能看不到我的 py.test 装置?

转载 作者:太空宇宙 更新时间:2023-11-03 15:09:43 27 4
gpt4 key购买 nike

我有以下结构:

demo/
conftest.py
test_1.py
test_2.py

conftest.py 内容为:

import pytest
@pytest.fixture()

def my_fixture():
print "testing"*

test_1.py内容为:

def test_my_fixture(my_fixture):
my_fixture

test_2.py内容为:

 import pytest

@pytest.mark.usefixtures('my_fixture')
def test_my_fixture():
my_fixture

当使用 py.test -s 执行测试时,我在 test_2.py 中得到 fixture 的 NameError 但在 中没有test_1.py;为什么?

这是输出:

================ test session starts ================
platform linux2 -- Python 2.7.3 -- py-1.4.26 -- pytest-2.6.4
plugins: timeout, random
collected 2 items

test_1.py testing
.
test_2.py testing
F

===================== FAILURES ======================
__________________ test_my_fixture __________________

def test_my_fixture():
> my_fixture
E NameError: global name 'my_fixture' is not defined

test_2.py:7: NameError

最佳答案

当您不需要直接访问 fixture 对象( fixture 函数的返回值)时,使用pytest.mark.usefixtures标记。

如果您需要访问 fixture 对象,请使用 fixture-as-function-argument(代码中的第一种方式)。


第二个代码错误的原因:my_fixture没有在函数(不是局部变量)或模块(不是全局变量)中定义,也不是内置对象;但是代码正在尝试访问它; 名称错误

只是不要尝试访问 my_fixture。 fixture 对象将为 None,因为 my_fixture 函数不返回任何内容。

关于python - 为什么测试功能看不到我的 py.test 装置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28410763/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com