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

Unified Diff: recipes/example/nested.py

Issue 2806363004: Enable strict coverage for step module (Closed)
Patch Set: review Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « recipes/example/defer.expected/one_fail.json ('k') | recipes/example/nested.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/example/nested.py
diff --git a/recipes/example/nested.py b/recipes/example/nested.py
deleted file mode 100644
index c16844aca179c895b31e80ea776565d5b358d1f4..0000000000000000000000000000000000000000
--- a/recipes/example/nested.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2015 The LUCI Authors. All rights reserved.
-# Use of this source code is governed under the Apache License, Version 2.0
-# that can be found in the LICENSE file.
-
-
-DEPS = [
- 'step',
-]
-
-
-def RunSteps(api):
- # Nest all steps below this.
- with api.step.nest('complicated thing'):
- with api.step.nest('first part'):
- api.step('wait a bit', ['sleep', '1'])
-
- # Prefix the name without indenting.
- with api.step.context({'name': 'attempt number'}):
- step_result = api.step('one', ['echo', 'herpy'])
- assert step_result.step['name'] == 'complicated thing.attempt number.one'
- api.step('two', ['echo', 'derpy'])
-
- # Outer nested step's status should not inherit from inner.
- with api.step.nest('inherit status') as nest_step:
- with api.step.nest('inner step') as other_nest_step:
- other_nest_step.presentation.status = api.step.EXCEPTION
- assert nest_step.presentation.status == api.step.SUCCESS
-
- # Change outer status after nesting is complete.
- with api.step.nest('versatile status') as nest_step:
- with api.step.nest('inner step'):
- with api.step.nest('even deeper'):
- pass
- nest_step.presentation.status = api.step.FAILURE
- assert nest_step.presentation.status == api.step.FAILURE
-
- api.step('simple thing', ['sleep', '1'])
-
-
-def GenTests(api):
- yield api.test('basic')
« no previous file with comments | « recipes/example/defer.expected/one_fail.json ('k') | recipes/example/nested.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698