gpt4 book ai didi

python - 如何修复 "PT006 wrong name(s) type in @pytest.mark.parametrize, expected tuple"?

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

当我运行 flake8 时,出现以下错误:

./test_sample.py:4:2: PT006 wrong name(s) type in @pytest.mark.parametrize, expected tuple

这是我的代码

import pytest


@pytest.mark.parametrize('foo,bar', [(1, 1), (2, 2)])
def test_foo(foo, bar):
assert foo == bar

点卡住 | egrep flake8:

flake8==3.8.4
flake8-plugin-utils==1.3.1
flake8-pytest-style==1.3.0

如何修复错误?

最佳答案

此错误由 flake8-pytest-style 生成。参见 https://github.com/m-burst/flake8-pytest-style/blob/master/docs/rules/PT006.md

你有两个选择:

  • 'foo,bar' 替换为 ('foo', 'bar')
    import pytest


    @pytest.mark.parametrize(('foo', 'bar'), [(1, 1), (2, 2)])
    def test_foo(foo, bar):
    assert foo == bar
  • 通过将包含以下内容的名为 .flake8 的文件添加到项目的根目录来更改 pytest-parametrize-names-type 配置选项:
    [flake8]
    pytest-parametrize-names-type = csv

关于python - 如何修复 "PT006 wrong name(s) type in @pytest.mark.parametrize, expected tuple"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66425753/

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