From 46dee4b1029b56036823f0b5fa4a102f8068f962 Mon Sep 17 00:00:00 2001 From: Neha Ojha Date: Wed, 6 Dec 2017 13:23:44 -0800 Subject: [PATCH] qa: preserve cbt task results Signed-off-by: Neha Ojha --- qa/tasks/cbt.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qa/tasks/cbt.py b/qa/tasks/cbt.py index 91bd3ff5480..40b8a08a715 100644 --- a/qa/tasks/cbt.py +++ b/qa/tasks/cbt.py @@ -118,6 +118,8 @@ class CBT(Task): '{cbtdir}/cbt_config.yaml'.format(cbtdir=self.cbt_dir), ], ) + preserve_file = os.path.join(self.ctx.archive, '.preserve') + open(preserve_file, 'a').close() def end(self): super(CBT, self).end()