Jenkins with pylint gives build failure

后端 未结 8 1036
天命终不由人
天命终不由人 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:57

    Recent rylint have option for not calling sys exit

    lint.Run(args, exit=False, **kwargs)
    

提交回复
热议问题