Rename csit validate job, add pylint installation to script.
[ci-management.git] / jjb / csit / include-raw-csit-pylint.sh
1 #!/bin/bash
2
3 sudo apt-get install -y --force-yes pylint
4 find resources -name \*.py | xargs pylint --rcfile=pylint.cfg > pylint.log || true
5
6 # vim: ts=4 ts=4 sts=4 et :