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
You can also simply put a
pylint || exit 0
in the shell cmdline. The Pylint plugin will fail the build anyway by checking the result of pyllint.