summaryrefslogtreecommitdiffstats
path: root/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'conftest.py')
-rw-r--r--conftest.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/conftest.py b/conftest.py
new file mode 100644
index 0000000..fada2fb
--- /dev/null
+++ b/conftest.py
@@ -0,0 +1,13 @@
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License.
+
+import os
+import pathlib
+import sys
+
+import pytest
+
+sys.path.append(os.fspath(pathlib.Path(__file__).parent / "packages" / "python"))
+sys.path.append(
+ os.fspath(pathlib.Path(__file__).parent / "tests" / "python" / "common")
+)