Make ansible-test available in the bin directory. (#45876)

This commit is contained in:
Matt Clay
2018-09-19 17:58:55 -07:00
committed by GitHub
parent 582a4dfa13
commit f3d1f9544b
7 changed files with 29 additions and 14 deletions

View File

@@ -1 +0,0 @@
test.py

8
test/runner/ansible-test Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
"""Legacy entry point for ansible-test. The preferred version is in the bin directory."""
import lib.cli
if __name__ == '__main__':
lib.cli.main()