mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-28 13:21:25 -07:00
Initial ansible-test implementation. (#18556)
This commit is contained in:
parent
d95eac16eb
commit
6bbd92e422
191 changed files with 5483 additions and 48 deletions
34
test/runner/lib/ansible_util.py
Normal file
34
test/runner/lib/ansible_util.py
Normal file
|
@ -0,0 +1,34 @@
|
|||
"""Miscellaneous utility functions and classes specific to ansible cli tools."""
|
||||
|
||||
from __future__ import absolute_import, print_function
|
||||
|
||||
import os
|
||||
|
||||
from lib.util import common_environment
|
||||
|
||||
|
||||
def ansible_environment(args):
|
||||
"""
|
||||
:type args: CommonConfig
|
||||
:rtype: dict[str, str]
|
||||
"""
|
||||
env = common_environment()
|
||||
path = env['PATH']
|
||||
|
||||
ansible_path = os.path.join(os.getcwd(), 'bin')
|
||||
|
||||
if not path.startswith(ansible_path + os.pathsep):
|
||||
path = ansible_path + os.pathsep + path
|
||||
|
||||
ansible = dict(
|
||||
ANSIBLE_FORCE_COLOR='%s' % 'true' if args.color else 'false',
|
||||
ANSIBLE_DEPRECATION_WARNINGS='false',
|
||||
ANSIBLE_CONFIG='/dev/null',
|
||||
PYTHONPATH=os.path.abspath('lib'),
|
||||
PAGER='/bin/cat',
|
||||
PATH=path,
|
||||
)
|
||||
|
||||
env.update(ansible)
|
||||
|
||||
return env
|
Loading…
Add table
Add a link
Reference in a new issue