blob: 130c5c8742898b5608612ba7b7c19d5faa920e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from __future__ import annotations
import os
import pytest
import sys
@pytest.fixture(autouse=True, scope='session')
def inject_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)
|