summaryrefslogtreecommitdiffstats
path: root/test/units/ansible_test/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/units/ansible_test/conftest.py')
-rw-r--r--test/units/ansible_test/conftest.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/units/ansible_test/conftest.py b/test/units/ansible_test/conftest.py
new file mode 100644
index 0000000..9ec9a02
--- /dev/null
+++ b/test/units/ansible_test/conftest.py
@@ -0,0 +1,14 @@
+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)