From dbcae9d07be758e2fbb14f6f8dcd3d131c7fbd19 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Wed, 28 Feb 2018 18:46:13 +0100 Subject: Switch from /home/opnfv/functest to /var/lib/xtesting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Functest containers will have to create symlinks to allow publishing artifacts. All classes create the mandatory dirs. Change-Id: Ia1f215005d553dd6d64685e4d8a3f5c843c5db7a Signed-off-by: Cédric Ollivier --- xtesting/core/feature.py | 2 +- xtesting/core/robotframework.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'xtesting/core') diff --git a/xtesting/core/feature.py b/xtesting/core/feature.py index d3f86c02..8474b8a4 100644 --- a/xtesting/core/feature.py +++ b/xtesting/core/feature.py @@ -27,7 +27,7 @@ class Feature(testcase.TestCase): """Base model for single feature.""" __logger = logging.getLogger(__name__) - dir_results = "/home/opnfv/xtesting/results" + dir_results = "/var/lib/xtesting/results" def __init__(self, **kwargs): super(Feature, self).__init__(**kwargs) diff --git a/xtesting/core/robotframework.py b/xtesting/core/robotframework.py index 4d3746aa..cc6020a2 100644 --- a/xtesting/core/robotframework.py +++ b/xtesting/core/robotframework.py @@ -53,7 +53,7 @@ class RobotFramework(testcase.TestCase): """RobotFramework runner.""" __logger = logging.getLogger(__name__) - dir_results = "/home/opnfv/xtesting/results" + dir_results = "/var/lib/xtesting/results" def __init__(self, **kwargs): self.res_dir = os.path.join(self.dir_results, 'robot') -- cgit 1.2.3-korg