| Index: expect_tests/type_definitions.py
|
| diff --git a/expect_tests/type_definitions.py b/expect_tests/type_definitions.py
|
| index bc4bdd5dbb53bf12c8671a5c1b0eecc6dfba4349..9923249bd8ad0909373d622b244ccf0665d5928c 100644
|
| --- a/expect_tests/type_definitions.py
|
| +++ b/expect_tests/type_definitions.py
|
| @@ -480,7 +480,8 @@ class Handler(object):
|
| handler = cls.ResultStageHandler(opts)
|
| try:
|
| for obj in objects:
|
| - error |= isinstance(handler(obj), Failure)
|
| + if not isinstance(obj, NoMatchingTestsError):
|
| + error |= isinstance(handler(obj), Failure)
|
| except ResultStageAbort:
|
| aborted = True
|
| handler.finalize(aborted)
|
|
|