aboutsummaryrefslogtreecommitdiffstats
path: root/func/driver.py
diff options
context:
space:
mode:
Diffstat (limited to 'func/driver.py')
-rw-r--r--func/driver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/func/driver.py b/func/driver.py
index 47d00f1f..c765728b 100644
--- a/func/driver.py
+++ b/func/driver.py
@@ -9,6 +9,7 @@
from utils import logger_utils
from operator import add
from ansible_api import AnsibleApi
+from os.path import expanduser
logger = logger_utils.QtipLogger('driver').get
@@ -35,7 +36,7 @@ class Driver:
def get_common_var_json(self, installer_type, pwd, benchmark_fname,
benchmark_detail, pip_dict, proxy_info):
- common_json = {'Dest_dir': 'results',
+ common_json = {'Dest_dir': expanduser('~') + '/qtip/results',
'ip1': '',
'ip2': '',
'installer': str(installer_type),