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:
parent
c7092a1c4d
commit
56993fb9ab
1 changed files with 0 additions and 4 deletions
|
@ -2641,7 +2641,6 @@ class TestSuite:
|
||||||
|
|
||||||
def load_from_file(self, file, filter_status=[]):
|
def load_from_file(self, file, filter_status=[]):
|
||||||
try:
|
try:
|
||||||
total_tests = 0
|
|
||||||
with open(file, "r") as fp:
|
with open(file, "r") as fp:
|
||||||
cr = csv.DictReader(fp)
|
cr = csv.DictReader(fp)
|
||||||
instance_list = []
|
instance_list = []
|
||||||
|
@ -2662,9 +2661,6 @@ class TestSuite:
|
||||||
instance_list.append(instance)
|
instance_list.append(instance)
|
||||||
self.add_instances(instance_list)
|
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:
|
except KeyError as e:
|
||||||
logger.error("Key error while parsing tests file.({})".format(str(e)))
|
logger.error("Key error while parsing tests file.({})".format(str(e)))
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue