open-cas-linux/test/utils_tests/opencas-py-tests/conftest.py
Rafal Stefanowski 44b4020cc1 Update copyright statements
Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
2020-05-04 16:47:38 +02:00

16 lines
302 B
Python

#
# Copyright(c) 2012-2020 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#
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")