gpt4 book ai didi

python - SciPy/pytest : Skip specific test

转载 作者:行者123 更新时间:2023-12-01 01:19:31 31 4
gpt4 key购买 nike

我使用测试我的 SciPy 安装

python -c "import scipy; scipy.test('full', verbose=2)"

单个测试 (test_face) 失败,而所有其他测试要么通过,要么失败。这一测试失败是因为缺少依赖项 bz2,但这没关系。如何指定我要完全跳过此测试,同时仍运行所有其他测试?

我正在使用 SciPy 1.2.0 和 pytest 4.0.2。

最佳答案

我找到了一个使用 extra_argv 参数的工作解决方案,它将参数传递给 pytest。来自 pytest docs , -k "not test_face" 可用于精确跳过此测试。那么总共,

python -c "import scipy; scipy.test('full', verbose=2, extra_argv=['-k not test_face'])"

实现了我想要的。

关于python - SciPy/pytest : Skip specific test,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53978046/

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