MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __match

Method __match

_pydev_runfiles/pydev_runfiles.py:746–753  ·  view source on GitHub ↗

returns whether a test name matches the test filter

(self, filter_list, name)

Source from the content-addressed store, hash-verified

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"""

Callers

nothing calls this directly

Calls 1

matchMethod · 0.80

Tested by

no test coverage detected