gpt4 book ai didi

pytest - 在测试执行之前无法获取 pytest 命令行参数?

转载 作者:行者123 更新时间:2023-12-04 16:45:20 31 4
gpt4 key购买 nike

我试图跳过依赖于命令行参数值的特定测试。我尝试使用 pytest.config.getoption("--some-custom-argument") 获取参数值就像这里描述的一样 related question suggestion在测试文件中并通过 skipif 检查参数值.但是pyest没有 config .并通过 request.config.getoption("--some-custom-argument") 获取参数值似乎只适用于 fixture 功能。我可以在测试执行之前获得命令行参数吗?我可以在 skipif 中检查它们在文件范围级别?

最佳答案

由于测试是在配置阶段之后和测试收集之前(即也在测试执行之前)收集的,pytest.config可在模块级别在测试模块中使用。例子:

# conftest.py
def pytest_addoption(parser):
parser.addoption('--spam', action='store')

# test_spam.py
import pytest


print(pytest.config.getoption('--spam'))


@pytest.mark.skipif(pytest.config.getoption('--spam') == 'eggs',
reason='spam == eggs')
def test_spam():
assert True

--spam=eggs 一起运行产量:
$ pytest -vs -rs --spam=eggs
============================== test session starts ================================
platform linux -- Python 3.6.5, pytest-3.4.1, py-1.5.3, pluggy-0.6.0 -- /data/gentoo64/usr/bin/python3.6
cachedir: .pytest_cache
rootdir: /data/gentoo64/home/u0_a82/projects/stackoverflow/so-50681407, inifile:
plugins: mock-1.6.3, cov-2.5.1, flaky-3.4.0
collecting 0 items
eggs
collected 1 item

test_spam.py::test_spam SKIPPED
============================ short test summary info ==============================
SKIP [1] test_spam.py:7: spam == eggs

=========================== 1 skipped in 0.03 seconds =============================

关于pytest - 在测试执行之前无法获取 pytest 命令行参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50681407/

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