pytest:在pytest_addoption钩子中添加互斥组

时间:2018-08-08 19:01:46

标签: pytest

如何在git push origin --delete myFeature pytest挂钩中添加互斥组?我在下面尝试了代码,但引发了下一个错误-pytest_addoption

AttributeError: 'Parser' object has no attribute 'optparser'

在此先感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

pytest的选项解析器是argparse.ArgumentParser的实例,而不是optparser的实例。只需删除optparser

group = parser.add_mutually_exclusive_group(required=True)

请参阅mutual exclusion的文档。