diff --git a/test/utils/shippable/code-smell-requirements.txt b/test/utils/shippable/code-smell-requirements.txt new file mode 100644 index 00000000000..abbfc9d4dc1 --- /dev/null +++ b/test/utils/shippable/code-smell-requirements.txt @@ -0,0 +1 @@ +yamllint==1.2.2 diff --git a/test/utils/shippable/code-smell.sh b/test/utils/shippable/code-smell.sh index 7878aa55d7f..3dcaafc1746 100755 --- a/test/utils/shippable/code-smell.sh +++ b/test/utils/shippable/code-smell.sh @@ -7,7 +7,8 @@ install_deps="${INSTALL_DEPS:-}" cd "${source_root}" if [ "${install_deps}" != "" ]; then - pip install yamllint + pip install -r "${source_root}/test/utils/shippable/code-smell-requirements.txt" --upgrade + pip list fi yamllint . diff --git a/test/utils/shippable/sanity-requirements.txt b/test/utils/shippable/sanity-requirements.txt new file mode 100644 index 00000000000..094224a844d --- /dev/null +++ b/test/utils/shippable/sanity-requirements.txt @@ -0,0 +1,4 @@ +tox +pyyaml +jinja2 +setuptools diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh index 707e5b5dddb..46bc367a240 100755 --- a/test/utils/shippable/sanity.sh +++ b/test/utils/shippable/sanity.sh @@ -15,13 +15,7 @@ if [ "${TOXENV}" = 'py24' ]; then python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce|docker_common|azure_rm_common|vca|vmware).py' lib/ansible/module_utils else if [ "${install_deps}" != "" ]; then - pip install \ - tox \ - pyyaml \ - jinja2 \ - setuptools \ - --upgrade - + pip install -r "${source_root}/test/utils/shippable/sanity-requirements.txt" --upgrade pip list fi