pub fn is_test_file(path: &str) -> boolExpand description
Return true if path identifies a test file by Python convention.
Delegates to a CorpusMatcher built from CORPUS_PROFILE.test_file_globs:
test_*.py/*_test.pymatch by base-name glob (pytest conventions), ORconftest.pymatches exactly (pytest fixtures / configuration), ORtestsas a bare literal matches any path segment (e.g.src/tests/foo.py).