Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: frontend/planner/failure_actions.py

Issue 1595019: Merge remote branch 'origin/upstream' into tempbranch (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « frontend/planner/execution_engine_unittest.py ('k') | frontend/planner/models.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import common
2 from autotest_lib.client.common_lib import enum, utils
3
4
5 def _site_host_actions_dummy():
6 return []
7
8 _site_host_actions = utils.import_site_function(
9 __file__, 'autotest_lib.frontend.planner.site_failure_actions',
10 'site_host_actions', _site_host_actions_dummy)
11
12 HostAction = enum.Enum(
13 string_values=True,
14 *(_site_host_actions() + ['Block', 'Unblock', 'Reinstall']))
15
16
17 TestAction = enum.Enum('Skip', 'Rerun', string_values=True)
OLDNEW
« no previous file with comments | « frontend/planner/execution_engine_unittest.py ('k') | frontend/planner/models.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698