aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-02-28 18:46:13 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-02-28 19:13:53 +0100
commitdbcae9d07be758e2fbb14f6f8dcd3d131c7fbd19 (patch)
tree61f52ad7d2e9d74426d1d9204858963508144b46 /xtesting/core
parent22b982b2156111e04a5d16da6c640ce3028a8916 (diff)
Switch from /home/opnfv/functest to /var/lib/xtesting
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 <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting/core')
-rw-r--r--xtesting/core/feature.py2
-rw-r--r--xtesting/core/robotframework.py2
2 files changed, 2 insertions, 2 deletions
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')