作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 alternative approach在此处的 PyTest 文档中列出。我的 parametrize
装饰器调用如下所示
@pytest.mark.parametrize("val1, params, result", [
('a string', pytest.fixture_request('valid_type'), 150)
])
但是,当我运行 pytest
时,出现以下错误:
test_get_responses.py:102: in <module>
('a string', pytest.fixture_request('valid_type'), 150)
E AttributeError: 'module' object has no attribute 'fixture_request'
valid_type
fixture 确实存在。
我正在运行 pytest 版本 3.2.0
如何解决这个问题,以便我可以使用上面文档中列出的“替代方法”?
最佳答案
所描述的方法只是一个尚未实现的提议(正如您在此讨论中看到的:https://github.com/pytest-dev/pytest/issues/349#issuecomment-286451346)。作为解决方法,您可以使用包 pytest-lazy-fixture
(可以使用 pip
安装):而不是 pytest.fixture_request('fixture_name')
只需使用 pytest.lazy_fixture('fixture_name')
。
关于python - pytest 找不到 pytest.fixture_request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45576850/
我正在尝试使用 alternative approach在此处的 PyTest 文档中列出。我的 parametrize 装饰器调用如下所示 @pytest.mark.parametrize("val
我是一名优秀的程序员,十分优秀!