Move ansible-test entry point. (#60281)
This commit is contained in:
parent
577bb88ad8
commit
97a0810e0f
2 changed files with 28 additions and 21 deletions
|
@ -1,21 +0,0 @@
|
|||
#!/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()
|
1
bin/ansible-test
Symbolic link
1
bin/ansible-test
Symbolic link
|
@ -0,0 +1 @@
|
|||
../test/lib/ansible_test/_data/cli/ansible_test_cli_stub.py
|
27
test/lib/ansible_test/_data/cli/ansible_test_cli_stub.py
Executable file
27
test/lib/ansible_test/_data/cli/ansible_test_cli_stub.py
Executable file
|
@ -0,0 +1,27 @@
|
|||
#!/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
|
||||
|
||||
|
||||
def main():
|
||||
"""Main program entry point."""
|
||||
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 as cli_main
|
||||
|
||||
cli_main()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in a new issue