4

我正在使用 BitBucket 管道使用 pylint 执行 linting 检查。几个小时前它工作正常。即使最终分数远远超过最低标准(8.0),我也一直面临以下错误:

您的代码已被评为 9.43/10

Traceback (most recent call last):
  File "/usr/local/bin/pylint-fail-under", line 8, in <module>
    sys.exit(main())
  File "/usr/local/lib/python3.6/dist-packages/pylint_fail_under/__main__.py", line 42, in main
    score = results.linter.stats["global_note"]
TypeError: 'LinterStats' object is not subscriptable
4

2 回答 2

5

不要使用pylint-fail-under, pylint 自 pylint 以来有一个失败选项2.5.0,它的维护者不会为更新的 pylint 更新此包。

更改pylint-fail-under --fail_under 8.0pylint --fail-under=8.0删除对pylint-fail-under.

另请参阅https://github.com/PyCQA/pylint/issues/5405和:https ://github.com/TNThieding/pylint-fail-under/issues/8#issuecomment-626369567

于 2021-11-27T18:51:22.250 回答
3

如果可以接受,另一种选择是降级:

pip install pylint==2.11.1
于 2021-11-29T06:28:50.107 回答