From 13e644d0ba893ddc5e2944c2e827fde7cd58ae72 Mon Sep 17 00:00:00 2001 From: xudan Date: Tue, 11 Dec 2018 01:41:15 -0500 Subject: Enable ShellRunner 1. fix the bug 'ShellRunner' object has no attribute 'archive_logs' 2. remove the testarea_supported because it's not very necessary for the test cases themselves and can make it a little more simple to add a test case with new test area JIRA: DOVETAIL-750 Change-Id: I71ee74615200376adca2a0db040753e5fce329bc Signed-off-by: xudan --- dovetail/testcase.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'dovetail/testcase.py') diff --git a/dovetail/testcase.py b/dovetail/testcase.py index 3be1cb02..b79bcfa7 100644 --- a/dovetail/testcase.py +++ b/dovetail/testcase.py @@ -221,8 +221,6 @@ class Testcase(object): return True, area_full for area in testarea: - if area not in dt_cfg.dovetail_config['testarea_supported']: - return False, None if area == 'full': return True, area_full area_no_duplicate.append(area) -- cgit 1.2.3-korg