From: Juha Kosonen Date: Wed, 17 Apr 2019 13:57:42 +0000 (+0000) Subject: Merge "Fix KeyError in show_stopper checking" X-Git-Tag: 2.0.0~98 X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=commitdiff_plain;h=64dc32d39f2f1541ecc1e55f38db1aed6f00d34b;hp=9e3249539861ecb37bb83aea9a9a8d9830e353da Merge "Fix KeyError in show_stopper checking" --- diff --git a/bluval/bluval.py b/bluval/bluval.py index bf5e0c8..c0c16de 100644 --- a/bluval/bluval.py +++ b/bluval/bluval.py @@ -34,7 +34,7 @@ def run_testcase(testcase): print('Invoking {}'.format(cmd)) try: status = subprocess.call(cmd, shell=True) - if status != 0 and testcase['show_stopper']: + if status != 0 and show_stopper: print('Show stopper testcase failed') return status except OSError: