Skip to content

Commit

Permalink
don't quit if one of the experiments break
Browse files Browse the repository at this point in the history
fixes #8
  • Loading branch information
gsathya committed Jun 17, 2014
1 parent 6118b2e commit c53be2f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions centinel/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ def run():
print "Reading input from %s" % (input_file)
input_file = open(input_file)

print "Running %s test." % (name)
exp = Exp(input_file)
exp.run()
try:
print "Running %s test." % (name)
exp = Exp(input_file)
exp.run()
except Exception, e:
print "Error: %s", str(e)

input_file.close()

Expand Down

0 comments on commit c53be2f

Please sign in to comment.