pylint.sh 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #!/usr/bin/env bash
  2. set -eu
  3. ANSIBLE_UPSTREAM_FILES=(
  4. 'inventory/aws/hosts/ec2.py'
  5. 'inventory/gce/hosts/gce.py'
  6. 'inventory/libvirt/hosts/libvirt_generic.py'
  7. 'inventory/openstack/hosts/nova.py'
  8. 'lookup_plugins/sequence.py'
  9. 'playbooks/gce/openshift-cluster/library/gce.py'
  10. )
  11. OLDREV=$1
  12. NEWREV=$2
  13. #TRG_BRANCH=$3
  14. PYTHON=$(which python)
  15. set +e
  16. PY_DIFF=$(/usr/bin/git diff --name-only $OLDREV $NEWREV --diff-filter=ACM | grep ".py$")
  17. set -e
  18. FILES_TO_TEST=""
  19. for PY_FILE in $PY_DIFF; do
  20. IGNORE_FILE=false
  21. for UPSTREAM_FILE in "${ANSIBLE_UPSTREAM_FILES[@]}"; do
  22. if [ "${PY_FILE}" == "${UPSTREAM_FILE}" ]; then
  23. IGNORE_FILE=true
  24. break
  25. fi
  26. done
  27. if [ "${IGNORE_FILE}" == true ]; then
  28. echo "Skipping file ${PY_FILE} as an upstream Ansible file..."
  29. continue
  30. fi
  31. if [ -e "${PY_FILE}" ]; then
  32. FILES_TO_TEST="${FILES_TO_TEST} ${PY_FILE}"
  33. fi
  34. done
  35. export PYTHONPATH=${WORKSPACE}/utils/src/:${WORKSPACE}/utils/test/
  36. if [ "${FILES_TO_TEST}" != "" ]; then
  37. echo "Testing files: ${FILES_TO_TEST}"
  38. exec ${PYTHON} -m pylint --rcfile ${WORKSPACE}/git/.pylintrc ${FILES_TO_TEST}
  39. else
  40. exit 0
  41. fi