From d5c39c8108514fdcef4489c4895494091abedc5b Mon Sep 17 00:00:00 2001 From: Robert Baldyga Date: Tue, 29 Oct 2019 08:52:32 +0100 Subject: [PATCH] Append test-framework path before first imports from framework Signed-off-by: Robert Baldyga --- test/functional/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/tests/conftest.py b/test/functional/tests/conftest.py index 71d0b06..9ed133d 100644 --- a/test/functional/tests/conftest.py +++ b/test/functional/tests/conftest.py @@ -10,10 +10,10 @@ import yaml import traceback from IPy import IP -from connection.ssh_executor import SshExecutor - sys.path.append(os.path.join(os.path.dirname(__file__), "../test-framework")) +from connection.ssh_executor import SshExecutor + from core.test_run_utils import TestRun from api.cas import installer from api.cas import casadm