
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
16 lines
296 B
Python
16 lines
296 B
Python
#
|
|
# Copyright(c) 2012-2021 Intel Corporation
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
import sys
|
|
|
|
|
|
def pytest_configure(config):
|
|
try:
|
|
import helpers
|
|
except ImportError:
|
|
raise Exception("Couldn't import helpers")
|
|
|
|
sys.path.append(helpers.find_repo_root() + "/utils")
|