15 lines
384 B
Python
Executable file
15 lines
384 B
Python
Executable file
#!/usr/bin/env python
|
|
# PYTHON_ARGCOMPLETE_OK
|
|
"""Primary entry point for ansible-test."""
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'test', 'runner')))
|
|
import lib.cli
|
|
lib.cli.main()
|