diff options
author | Matt Clay <matt@mystile.com> | 2018-09-21 11:38:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 11:38:22 -0700 |
commit | ac492476e5389e17b8d401174f18b73e59a7fb06 (patch) | |
tree | ff4b5966545ea3228df65f141f5a2e84f1349952 /test/utils | |
parent | b60854357ba968e5a6942ec10a8af6d0ba67d6b6 (diff) | |
download | ansible-ac492476e5389e17b8d401174f18b73e59a7fb06.tar.gz |
Bug fixes and cleanup for ansible-test. (#45991)
* Remove unused imports.
* Clean up ConfigParser usage in ansible-test.
* Fix bare except statements in ansible-test.
* Miscellaneous cleanup from PyCharm inspections.
* Enable pylint no-self-use for ansible-test.
* Remove obsolete pylint ignores for Python 3.7.
* Fix shellcheck issuers under newer shellcheck.
* Use newer path for ansible-test.
* Fix issues in code-smell tests.
Diffstat (limited to 'test/utils')
-rwxr-xr-x | test/utils/shippable/shippable.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/utils/shippable/shippable.sh b/test/utils/shippable/shippable.sh index e6e2d7d88a..bf31da0643 100755 --- a/test/utils/shippable/shippable.sh +++ b/test/utils/shippable/shippable.sh @@ -23,10 +23,10 @@ if [ -d /home/shippable/cache/ ]; then ls -la /home/shippable/cache/ fi -which python +command -v python python -V -which pip +command -v pip pip --version pip list --disable-pip-version-check |