(self, context, sections, defs)
| 935 | return result |
| 936 | |
| 937 | def GetTestStatus(self, context, sections, defs): |
| 938 | # Just read the test configuration from root_path/root.status. |
| 939 | root = TestConfiguration(context, self.test_root, 'root') |
| 940 | root.GetTestStatus(sections, defs) |
| 941 | for tests_repos in self.tests_repos: |
| 942 | tests_repos.GetTestStatus(context, sections, defs) |
| 943 | |
| 944 | |
| 945 | TIMEOUT_SCALEFACTOR = { |
no test coverage detected