summaryrefslogtreecommitdiffstats
path: root/dovetail/report.py
diff options
context:
space:
mode:
authorStamatis Katsaounis <mokats@intracom-telecom.com>2019-03-27 09:38:14 +0200
committerxudan <xudan16@huawei.com>2019-03-28 23:16:43 -0400
commit9bb85082e261f5df9dbd0a6bbeb6e315d8f67cdc (patch)
tree319a6d9d6a702dc5bc7ee268d8ea5fa6931f5051 /dovetail/report.py
parentf27b1382a87c432487816cfad6e5c341250d16b2 (diff)
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 <mokats@intracom-telecom.com> Co-Authored-By: Panagiotis Karalis <pkaralis@intracom-telecom.com>
Diffstat (limited to 'dovetail/report.py')
-rw-r--r--dovetail/report.py4
1 files changed, 2 insertions, 2 deletions
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):