我有一个项目,其中每个应用程序都有一个tests
模块,如下所示:
app1/
tests/
__init__.py
# whatever test files are
app2/
tests/
__init__.py
# whatever test files are
您还可以在项目根目录中找到项目包。它有一个testing
子程序包,其中包含用于模型和字段的基本测试用例,当然还包括以下固定装置:
myproject/
__init__.py
# settings and related files, you know
testing/
__init__.py
fixtures.py # for fixtures
# other modules for base test classes and stuff
所以,我的总体项目结构是:
myproject/ # contains standard django stuff and a testing subpackage
app1/ # contains app and tests
app2/ # so as above
# so on and so forth
项目根目录中的pytest.ini
内容如下:
[pytest]
DJANGO_SETTINGS_MODULE = myproject.settings.development
python_files =
test_*.py
myproject/testing/fixtures.py
addopts = -s
console_output_style = count
log_cli_level = DEBUG
log_print = True
因此,假设myproject/testing/fixtures.py
包含以下灯具:
# assuming i've imported related stuff
@pytest.fixture # might have different scope
def foo():
"""does foo"""
return "foo"
然后,我进行pytest --fixtures
,以查看pytest是否可以正确找到我的装置,并且可以,这意味着应该没有问题。
但是,当我在项目中运行测试时,出现以下错误:
E fixture 'foo' not found
这很奇怪,因为我可以在pytest --fixtures
中清楚地看到它。我不知道为什么会发生这种情况或导致这种情况的原因。
pytest-django
3.4.8 答案 0 :(得分:1)
如果夹具应保存在单独的模块中,并且整个测试套件均可访问,则最好将模块注册为插件,以确保在测试收集阶段之前加载该模块。在项目根目录中使用内容创建一个名为conftest.py
的文件
pytest_plugins = ['myproject.testing.fixtures']
当然,您可以只使用conftest.py
代替fixtures.py
,然后将灯具放在此处。