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

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

Powered by Google App Engine
This is Rietveld 408576698