2016-06-02 04:08:14 +00:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
source_root=$(python -c "from os import path; print(path.abspath(path.join(path.dirname('$0'), '../../..')))")
|
|
|
|
|
2016-06-04 17:58:17 +00:00
|
|
|
install_deps="${INSTALL_DEPS:-}"
|
|
|
|
|
2016-06-02 04:08:14 +00:00
|
|
|
cd "${source_root}"
|
|
|
|
|
2016-06-04 17:58:17 +00:00
|
|
|
if [ "${install_deps}" != "" ]; then
|
2016-09-22 23:12:10 +00:00
|
|
|
apt-add-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
|
|
|
|
apt-get update -qq
|
|
|
|
apt-get install shellcheck
|
|
|
|
|
2016-06-27 23:34:19 +00:00
|
|
|
pip install -r "${source_root}/test/utils/shippable/code-smell-requirements.txt" --upgrade
|
|
|
|
pip list
|
2016-06-04 17:58:17 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
yamllint .
|
2016-06-02 04:08:14 +00:00
|
|
|
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
|
2016-09-22 23:12:10 +00:00
|
|
|
|
|
|
|
shellcheck \
|
|
|
|
test/utils/shippable/*.sh
|