Add tests for opencas.py

Signed-off-by: Jan Musial <jan.musial@intel.com>
This commit is contained in:
Jan Musial
2019-05-27 13:03:12 +02:00
parent d773a81fa7
commit aa0f3c078a
9 changed files with 1250 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
#
# Copyright(c) 2012-2019 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")