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

Side by Side Diff: recipes/example/defer.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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed under the Apache License, Version 2.0
3 # that can be found in the LICENSE file.
4
5 DEPS = [
6 'step',
7 ]
8
9 def RunSteps(api):
10 ran_both = False
11 try:
12 with api.step.defer_results():
13 api.step("testa", ["echo", "testa"])
14 api.step("testb", ["echo", "testb"])
15 ran_both = True
16 finally:
17 assert ran_both
18
19
20 def GenTests(api):
21 yield api.test('basic')
22
23 yield (
24 api.test('one_fail') +
25 api.step_data('testa', retcode=1)
26 )
OLDNEW
« no previous file with comments | « recipes/engine_tests/trigger.expected/basic.json ('k') | recipes/example/defer.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698