Jenkins with pylint gives build failure

后端 未结 8 1039
天命终不由人
天命终不由人 2021-01-04 12:25

I added a build step to execute a Python script.
In this script pylint is called with the lint.Run(..args) to check the code.
The script works but in the end, the bu

8条回答
  •  攒了一身酷
    2021-01-04 12:45

    Pylint expect the code being analyzed to be 100% perfect. Even code warning may cause exit with non zero status code. Try to fix your code as Pylint suggest and rate 10/10.

    Hope this helps.

提交回复
热议问题