summaryrefslogtreecommitdiffstats
path: root/conftest.py
blob: fada2fb823a8ef469f95b5bdeab86e6e6a437a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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")
)