summaryrefslogtreecommitdiffstats
path: root/dovetail/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/run.py')
-rwxr-xr-xdovetail/run.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/dovetail/run.py b/dovetail/run.py
index 78e085eb..aae35e12 100755
--- a/dovetail/run.py
+++ b/dovetail/run.py
@@ -166,10 +166,17 @@ def clean_results_dir():
raise SystemExit(1)
+def get_result_path():
+ dovetail_home = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+ result_path = os.path.join(dovetail_home, 'results')
+ dt_cfg.dovetail_config['result_dir'] = result_path
+
+
def main(*args, **kwargs):
"""Dovetail compliance test entry!"""
build_tag = "daily-master-%s" % str(uuid.uuid4())
dt_cfg.dovetail_config['build_tag'] = build_tag
+ get_result_path()
clean_results_dir()
if kwargs['debug']:
os.environ['DEBUG'] = 'true'