pytest如何以及在哪里找到固定装置

时间:2012-11-30 09:05:53

标签: python fixtures pytest

py.test在哪里以​​及如何寻找灯具?我在同一文件夹中的2个文件中有相同的代码。当我删除conftest.py时,找不到运行test_conf.py的cmdopt(也在同一个文件夹中。为什么没有搜索到sonoftest.py?

# content of test_sample.py
def test_answer(cmdopt):
    if cmdopt == "type1":
        print ("first")
    elif cmdopt == "type2":
        print ("second")
    assert 0 # to see what was printed

conftest.py的内容

import pytest

def pytest_addoption(parser):
    parser.addoption("--cmdopt", action="store", default="type1",
        help="my option: type1 or type2")

@pytest.fixture
def cmdopt(request):
    return request.config.getoption("--cmdopt")

sonoftest.py

的内容
import pytest

def pytest_addoption(parser):
    parser.addoption("--cmdopt", action="store", default="type1",
        help="my option: type1 or type2")

@pytest.fixture
def cmdopt(request):
    return request.config.getoption("--cmdopt")

文档说

http://pytest.org/latest/fixture.html#fixture-function

  
      
  1. pytest因test_前缀而找到test_ehlo。测试函数需要一个名为smtp的函数参数。匹配夹具   通过查找名为夹具标记的函数来发现函数   SMTP。
  2.   
  3. 调用smtp()来创建实例。
  4.   
  5. 调用test_ehlo()并在测试函数的最后一行失败。
  6.   

3 个答案:

答案 0 :(得分:29)

py.test将导入conftest.py以及与python_files模式匹配的所有Python文件,默认情况下为test_*.py。如果您有测试夹具,则需要在conftest.py或从依赖它的测试文件中包含或导入它:

from sonoftest import pytest_addoption, cmdopt

答案 1 :(得分:18)

以下是py.test查找灯具(和测试)的顺序(来自here):

py.test以下列方式在工具启动时加载插件模块:

  
      
  1. 加载所有内置插件

  2.   
  3. 加载通过setuptools入口点注册的所有插件。

  4.   
  5. 通过预扫描-p name选项的命令行并在实际命令行解析之前加载指定的插件。

  6.   
  7. 通过加载命令行调用推断的所有conftest.py文件(测试文件及其所有父目录)。注意   默认情况下,子目录中的conftest.py个文件未加载   工具启动。

  8.   
  9. 通过递归加载conftest.py个文件中pytest_plugins变量指定的所有插件

  10.   

答案 2 :(得分:1)

我遇到了同样的问题,花了很多时间来找到一个简单的解决方案,这个例子是针对其他情况与我类似的人。

  • conftest.py:
import pytest

pytest_plugins = [
 "some_package.sonoftest"
]

def pytest_addoption(parser):
  parser.addoption("--cmdopt", action="store", default="type1",
      help="my option: type1 or type2")

@pytest.fixture
def cmdopt(request):
  return request.config.getoption("--cmdopt")
  • some_package / sonoftest.py:
import pytest

@pytest.fixture
def sono_cmdopt(request):
  return request.config.getoption("--cmdopt")
  • some_package / test_sample.py
def test_answer1(cmdopt):
  if cmdopt == "type1":
      print ("first")
  elif cmdopt == "type2":
      print ("second")
  assert 0 # to see what was printed

def test_answer2(sono_cmdopt):
  if sono_cmdopt == "type1":
      print ("first")
  elif sono_cmdopt == "type2":
      print ("second")
  assert 0 # to see what was printed

您可以在此处找到类似的示例:https://github.com/pytest-dev/pytest/issues/3039#issuecomment-464489204 还有其他https://stackoverflow.com/a/54736376/6655459

pytest官方文档的描述:https://docs.pytest.org/en/latest/reference.html?highlight=pytest_plugins#pytest-plugins

  

请注意,在   some_package.test_sample"需要有__init__.py个文件,才能由pytest

加载插件