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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes/example/defer.py
diff --git a/recipes/example/defer.py b/recipes/example/defer.py
deleted file mode 100644
index f1051df5dd6eb0729ae8484e92fa5b2132ed8572..0000000000000000000000000000000000000000
--- a/recipes/example/defer.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2014 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):
- ran_both = False
- try:
- with api.step.defer_results():
- api.step("testa", ["echo", "testa"])
- api.step("testb", ["echo", "testb"])
- ran_both = True
- finally:
- assert ran_both
-
-
-def GenTests(api):
- yield api.test('basic')
-
- yield (
- api.test('one_fail') +
- api.step_data('testa', retcode=1)
- )
« 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