(self, obj: object, name: str)
| 376 | return False |
| 377 | |
| 378 | def istestclass(self, obj: object, name: str) -> bool: |
| 379 | if not (self.classnamefilter(name) or self.isnosetest(obj)): |
| 380 | return False |
| 381 | if inspect.isabstract(obj): |
| 382 | return False |
| 383 | return True |
| 384 | |
| 385 | def _matches_prefix_or_glob_option(self, option_name: str, name: str) -> bool: |
| 386 | """Check if the given name matches the prefix or glob-pattern defined |
no test coverage detected