Kill test processes whenever any error occurs

This commit is contained in:
George Roman 2018-11-26 22:42:27 +02:00
parent 524bd722ef
commit c1738b37c6
2 changed files with 2 additions and 2 deletions

View file

@ -122,7 +122,7 @@ class ServoTestharnessExecutor(ProcessTestExecutor):
self.proc.wait()
else:
self.proc.kill()
except KeyboardInterrupt:
except:
self.proc.kill()
raise