(self, path)
| 876 | class TestRepository(TestSuite): |
| 877 | |
| 878 | def __init__(self, path): |
| 879 | normalized_path = abspath(path) |
| 880 | super(TestRepository, self).__init__(basename(normalized_path)) |
| 881 | self.path = normalized_path |
| 882 | self.is_loaded = False |
| 883 | self.config = None |
| 884 | |
| 885 | def GetConfiguration(self, context): |
| 886 | if self.is_loaded: |