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

  /external/chromium-trace/catapult/dashboard/dashboard/
edit_test_owners_test.py 36 def _SetOwnersDict(self, owner_dict):
38 owner_dict)
88 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
89 self.assertIn('ChromiumPerf/spaceport', owner_dict)
90 self.assertIn('chris@chromium.org', owner_dict['ChromiumPerf/spaceport'])
97 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
98 self.assertNotIn('ChromiumPerf/spaceport', owner_dict)
111 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
112 self.assertIn('john@chromium.org', owner_dict['ChromiumPerf/speedometer'])
121 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY
    [all...]
test_owner_test.py 36 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
37 self.assertEqual(_SAMPLE_OWNER_DICT, owner_dict)
45 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
46 self.assertEqual({}, owner_dict)
52 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
53 self.assertEqual({}, owner_dict)
59 owner_dict = layered_cache.GetExternal(test_owner._MASTER_OWNER_CACHE_KEY)
60 self.assertEqual(_COMBINED_SAMPLE_OWNER_DICT, owner_dict)
test_owner.py 31 def UpdateOwnerFromChartjson(owner_dict):
34 Checks if tests owners have changed by matching |owner_dict| with the stored
38 owner_dict: A dictionary of Master/Test suite to set of owners.
44 for path, owners in owner_dict.iteritems():
85 def AddOwnerFromDict(owner_dict):
86 """Adds test owner from |owner_dict| to owner dict in layered_cache.
93 and parameter owner_dict is:
106 owner_dict: A dictionary of "Master/Test suite" to set of owners' email.
109 for path, owners in owner_dict.iteritems():
136 def RemoveOwnerFromDict(owner_dict)
    [all...]
edit_test_owners.py 87 owner_dict = test_owner.GetMasterCachedOwner()
89 for test_suite_path in sorted(owner_dict):
90 owners = owner_dict[test_suite_path]

Completed in 88 milliseconds