Index: recipe_modules/step/tests/subannotations.py |
diff --git a/recipe_modules/step/tests/subannotations.py b/recipe_modules/step/tests/subannotations.py |
deleted file mode 100644 |
index 19ee211293cc207c1c99950883ad43a741ac805e..0000000000000000000000000000000000000000 |
--- a/recipe_modules/step/tests/subannotations.py |
+++ /dev/null |
@@ -1,14 +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): |
- api.step('Dont subannotate me', ['echo', '@@@BUILD_STEP@steppy@@@']) |
- api.step('Subannotate me', |
- ['echo', '@@@BUILD_STEP@pippy@@@'], |
- allow_subannotations=True) |
- |
-def GenTests(api): |
- yield api.test('basic') |