(path_arg)
| 1535 | |
| 1536 | |
| 1537 | def SplitPath(path_arg): |
| 1538 | stripped = [c.strip() for c in path_arg.split('/')] |
| 1539 | return [Pattern(s) for s in stripped if len(s) > 0] |
| 1540 | |
| 1541 | def NormalizePath(path, prefix='test/'): |
| 1542 | # strip the extra path information of the specified test |
no test coverage detected
searching dependent graphs…