From 40ffd8269d6ae2e71817c14b735a84da2e7dcd02 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 22 Sep 2016 16:12:10 -0700 Subject: [PATCH] Add shellcheck to code-smell checks. (#17715) --- test/utils/shippable/code-smell.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/utils/shippable/code-smell.sh b/test/utils/shippable/code-smell.sh index 3dcaafc1746..bcf3bf1ace7 100755 --- a/test/utils/shippable/code-smell.sh +++ b/test/utils/shippable/code-smell.sh @@ -7,6 +7,10 @@ install_deps="${INSTALL_DEPS:-}" cd "${source_root}" if [ "${install_deps}" != "" ]; then + apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe' + apt-get update -qq + apt-get install shellcheck + pip install -r "${source_root}/test/utils/shippable/code-smell-requirements.txt" --upgrade pip list fi @@ -16,3 +20,6 @@ test/code-smell/replace-urlopen.sh . test/code-smell/use-compat-six.sh lib test/code-smell/boilerplate.sh test/code-smell/required-and-default-attributes.sh + +shellcheck \ + test/utils/shippable/*.sh