mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
Python
15 lines
404 B
Python
5 years ago
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
|
||
|
import os
|
||
|
import pytest
|
||
|
import sys
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True, scope='session')
|
||
|
def ansible_test():
|
||
|
"""Make ansible_test available on sys.path for unit testing ansible-test."""
|
||
|
test_lib = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), 'lib')
|
||
|
sys.path.insert(0, test_lib)
|