diff options
author | Matt Clay <matt@mystile.com> | 2019-08-08 09:18:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 09:18:31 -0700 |
commit | 97a0810e0ff45a15dfc459367aeb415c0b5e7ad5 (patch) | |
tree | e0d6b52681ef65a156213af602f63178e4a33c74 /bin | |
parent | 577bb88ad8529d4627fb2b12cc5966d9786af95c (diff) | |
download | ansible-97a0810e0ff45a15dfc459367aeb415c0b5e7ad5.zip |
Move ansible-test entry point. (#60281)
Diffstat (limited to 'bin')
l---------[-rwxr-xr-x] | bin/ansible-test | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/bin/ansible-test b/bin/ansible-test index c7ea914c69..14f009af86 100755..120000 --- a/bin/ansible-test +++ b/bin/ansible-test @@ -1,21 +1 @@ -#!/usr/bin/env python -# PYTHON_ARGCOMPLETE_OK -"""Command line entry point for ansible-test.""" - -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type - -import os -import sys - -if __name__ == '__main__': - ansible_root = os.path.abspath(os.path.join(os.path.dirname(os.path.dirname(__file__)))) - source_root = os.path.join(ansible_root, 'test', 'lib') - - if os.path.exists(os.path.join(ansible_root, 'setup.py')) and os.path.exists(os.path.join(source_root, 'ansible_test', '_internal', 'cli.py')): - # running from source, use that version of ansible-test instead of any version that may already be installed - sys.path.insert(0, source_root) - - from ansible_test._internal.cli import main - - main() +../test/lib/ansible_test/_data/cli/ansible_test_cli_stub.py
\ No newline at end of file |