作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在pytest_addoption
pytest hook 中如何添加互斥组?我尝试了下面的代码,但它引发了下一个错误 - AttributeError: 'Parser' object has no attribute 'optparser'
def pytest_addoption(parser):
group = parser.optparser.add_mutually_exclusive_group(required=True)
group.add_argument('--foo', default=False)
group.add_argument('--bar', default=False)
预先感谢您的帮助!
最佳答案
pytest
的选项解析器是 argparse.ArgumentParser
的实例,而不是 optparser
。只需删除 optparser
:
group = parser.add_mutually_exclusive_group(required=True)
请参阅 mutual exclusion 的文档.
关于Pytest:在pytest_addoption hook中添加互斥组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51753915/
我有一个具有以下结构的项目: Project/ | +-- src/ | | | +-- proj/ | | | +-- __init__.py | +--
是否可以在 pytest 的命令行中添加多个选项?我发现我可以将 pytest_addoption Hook 添加到 conftest.py 文件,但我想知道如何添加多个选项。 最佳答案 您可以使用
我必须在我存储在 pytest addoption 中的 pytest 命令中传递一个参数。我想在 pytest parametrize 函数中使用这些值。 命令: pytest --range-fr
在 pytest 中运行测试时,我有一个 conftest 文件来处理 selenium 驱动程序的设置和拆卸。我正在尝试添加命令行选项以确定我是运行本地内置的 selenium 和 web 驱动程序
我是一名优秀的程序员,十分优秀!