diff options
author | Matt Clay <matt@mystile.com> | 2019-08-05 23:56:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-05 23:56:38 +0200 |
commit | b446ca100f22f8be8d84387ed70e824874a33828 (patch) | |
tree | a3d0566c8eec2d3917133dda93ce150064a190a3 /test/utils | |
parent | Update docs references for ansible-test. (#60109) (diff) | |
download | ansible-b446ca100f22f8be8d84387ed70e824874a33828.tar.xz ansible-b446ca100f22f8be8d84387ed70e824874a33828.zip |
Prepare ansible-test code for relocation. (#60110)
* Fix imports in cli.py.
* Fix imports in executor.py.
* Remove old test/runner/ansible-test entry point.
Use the official bin/ansible-test entry point instead, which has been around since Ansible 2.5.
* Use bin/ansible-test on Shippable.
Diffstat (limited to 'test/utils')
-rwxr-xr-x | test/utils/shippable/shippable.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/shippable/shippable.sh b/test/utils/shippable/shippable.sh index 79aa5d08e9..98f9c879ff 100755 --- a/test/utils/shippable/shippable.sh +++ b/test/utils/shippable/shippable.sh @@ -30,7 +30,7 @@ command -v pip pip --version pip list --disable-pip-version-check -export PATH="test/runner:${PATH}" +export PATH="${PWD}/bin:${PATH}" export PYTHONIOENCODING='utf-8' if [ "${JOB_TRIGGERED_BY_NAME:-}" == "nightly-trigger" ]; then |