sanitycheck: remove confusing message when loading files

This message was intended for retries only, not every time we loaded a
file with a test manifest.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-03-24 11:03:08 -04:00
commit 56993fb9ab

View file

@ -2641,7 +2641,6 @@ class TestSuite:
def load_from_file(self, file, filter_status=[]):
try:
total_tests = 0
with open(file, "r") as fp:
cr = csv.DictReader(fp)
instance_list = []
@ -2662,9 +2661,6 @@ class TestSuite:
instance_list.append(instance)
self.add_instances(instance_list)
tests_to_run = len(self.instances)
logger.info("%d tests passed already, retrying %d tests" % (total_tests - tests_to_run, tests_to_run))
except KeyError as e:
logger.error("Key error while parsing tests file.({})".format(str(e)))
sys.exit(2)