MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _suite_names

Method _suite_names

examples/performance/__init__.py:399–405  ·  view source on GitHub ↗
(cls)

Source from the content-addressed store, hash-verified

397
398 @classmethod
399 def _suite_names(cls):
400 suites = []
401 for file_ in os.listdir(os.path.dirname(__file__)):
402 match = re.match(r"^([a-z].*).py$", file_)
403 if match:
404 suites.append(match.group(1))
405 return suites
406
407
408class TestResult:

Callers 1

mainMethod · 0.80

Calls 2

matchMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected