continue testing after error

This commit is contained in:
Gregory Becker
2020-03-18 09:52:52 -07:00
committed by Tamara Dahlgren
parent 6ad70b5f5d
commit dd0fbe670c

View File

@@ -102,6 +102,9 @@ def test(parser, args):
with reporter('test'):
if args.smoke_test:
for spec in specs_to_test:
spec.package.do_test(not args.keep_tmpdir)
try:
spec.package.do_test(not args.keep_tmpdir)
except BaseException as e:
pass # Test is logged, go on to other tests
else:
raise NotImplementedError