From 5b2296b3640c2417d8ebdbc1890f0bec1ba67c90 Mon Sep 17 00:00:00 2001 From: "Danielle Sucher, Keith Marter & Nishit Shah" Date: Fri, 28 Mar 2014 17:46:08 -0400 Subject: [PATCH] Continue running remaining tests when one fails This lets us see all of the failing tests rather than just the first failing test. --- huxley/steps.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/huxley/steps.py b/huxley/steps.py index 3490011..bfcab6c 100644 --- a/huxley/steps.py +++ b/huxley/steps.py @@ -101,6 +101,10 @@ def execute(self, run): ) else: raise TestError('Screenshot %s was different.' % self.index) + except (TestError, ValueError) as e: + print ' ', e + pass finally: if not run.save_diff: os.unlink(new) +