gpt4 book ai didi

python - 我可以在 conftest 中设置 pytest 命令行参数吗?

转载 作者:行者123 更新时间:2023-12-05 01:36:58 26 4
gpt4 key购买 nike

我想做的 pytest 总是涉及短回溯(--tb=short)和报告跳过原因(-rsx)

所以我不必每次都执行 pytest --tb=short -rsx,我可以在某个地方指定它吗,也许是 conftest.py?

谢谢

最佳答案

如果你总是想涉及简短的回溯并报告跳过原因你可以将它写入配置文件 pytest.ini

[pytest]
addopts = -rsx --tb=short

或者,您可以设置一个 PYTEST_ADDOPTS 环境变量,以便在使用该环境时添加命令行选项:

export PYTEST_ADDOPTS="-rsx --tb=short"

关于python - 我可以在 conftest 中设置 pytest 命令行参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61556927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com