From 9bb85082e261f5df9dbd0a6bbeb6e315d8f67cdc Mon Sep 17 00:00:00 2001 From: Stamatis Katsaounis Date: Wed, 27 Mar 2019 09:38:14 +0200 Subject: Fix VVP test case This patch adds check for no environment variables provided to container configuration. Furthermore, it changes the check results file to a list of check result files. Change-Id: I2112ee1fd4b3156608d8a27dd3b9c90dbe35a24c Signed-off-by: Stamatis Katsaounis Co-Authored-By: Panagiotis Karalis --- dovetail/report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dovetail/report.py') diff --git a/dovetail/report.py b/dovetail/report.py index 556fc76d..36a33a49 100644 --- a/dovetail/report.py +++ b/dovetail/report.py @@ -515,8 +515,8 @@ class OnapVvpCrawler(Crawler): def create_log(cls): cls.logger = dt_logger.Logger(__name__ + '.OnapVvpCrawler').getLogger() - def crawl(self, testcase, file_path): - return self.crawl_from_file(testcase, file_path) + def crawl(self, testcase, file_paths): + return self.crawl_from_file(testcase, file_paths[0]) def crawl_from_file(self, testcase, file_path): if not os.path.exists(file_path): -- cgit 1.2.3-korg