HomeSort by relevance Sort by last modified time
    Searched refs:test_suite_path (Results 1 - 5 of 5) sorted by null

  /external/chromium-trace/catapult/dashboard/dashboard/
edit_test_owners.py 48 test_suite_path = self.request.get('item')
50 if not action or not test_suite_path:
58 test_suite_path = str(test_suite_path)
61 test_owner.ValidateTestSuitePath(test_suite_path)
68 test_owner.AddOwner(test_suite_path, owner_email)
70 test_owner.RemoveOwner(test_suite_path, owner_email)
79 for test_suite_path in sorted(test_suite_paths):
81 'name': test_suite_path,
89 for test_suite_path in sorted(owner_dict)
    [all...]
test_owner.py 70 def AddOwner(test_suite_path, owner_email):
74 test_suite_path: A string of "Master/Test suite".
78 owners = owner_dict_cache.get(test_suite_path, set())
80 owner_dict_cache[test_suite_path] = owners
116 def RemoveOwner(test_suite_path, owner_email=None):
117 """Removes test owners for |test_suite_path|.
120 test_suite_path: A string of "Master/Test suite".
122 for |test_suite_path| will be deleted.
125 if test_suite_path in owner_dict_cache:
127 owners = owner_dict_cache[test_suite_path]
    [all...]
graph_json.py 547 test_suite_path = '/'.join(path_parts[0:3])
549 if test_suite_path not in subtests:
550 subtests[test_suite_path] = {}
551 subtests[test_suite_path] = list_tests.GetSubTests(test_suite, [bot_path])
567 test_suite_path = '/'.join(test_parts[0:3])
569 if test_suite_path not in sub_test_dict:
571 sub_test_tree = sub_test_dict[test_suite_path]
group_report_test.py 155 test_suite_path = '%s/%s' % (test_path_parts[0], test_path_parts[2])
156 test_owner.AddOwnerFromDict({test_suite_path: ['foo@bar.com']})
  /external/autotest/utils/
test_importer.py 79 test_suite_path = os.path.join(autotest_dir, 'test_suites')
80 if os.path.exists(test_suite_path):
81 logging.info("Scanning %s", test_suite_path)
82 tests = get_tests_from_fs(test_suite_path, '.*',

Completed in 164 milliseconds