validate: launcher: Print some ERROR log when inspecting scenario fails
authorThibault Saunier <tsaunier@igalia.com>
Fri, 20 Jul 2018 02:00:17 +0000 (22:00 -0400)
committerThibault Saunier <tsaunier@igalia.com>
Sat, 21 Jul 2018 15:43:40 +0000 (11:43 -0400)
validate/launcher/baseclasses.py

index 09ec3c4..6630e5f 100644 (file)
@@ -1925,7 +1925,8 @@ class ScenarioManager(Loggable):
                        "--scenarios-defs-output-file", scenario_defs]
             command.extend(scenario_paths)
             subprocess.check_call(command, stdout=logs, stderr=logs)
-        except subprocess.CalledProcessError:
+        except subprocess.CalledProcessError as e:
+            self.error(e)
             pass
 
         config = configparser.RawConfigParser()