returns whether a test name matches the test filter
(self, filter_list, name)
| 744 | return 0 |
| 745 | |
| 746 | def __match(self, filter_list, name): |
| 747 | """returns whether a test name matches the test filter""" |
| 748 | if filter_list is None: |
| 749 | return 1 |
| 750 | for f in filter_list: |
| 751 | if re.match(f, name): |
| 752 | return 1 |
| 753 | return 0 |
| 754 | |
| 755 | def run_tests(self, handle_coverage=True): |
| 756 | """runs all tests""" |