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

Unified Diff: recipe_engine/unittests/run_test.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 | « recipe_engine/loader.py ('k') | recipe_modules/step/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/unittests/run_test.py
diff --git a/recipe_engine/unittests/run_test.py b/recipe_engine/unittests/run_test.py
index 5e59495253504d49df0dec555bd55c3ab893d704..cec960f0e21b6ef47afe03f3a6136e132db05ceb 100755
--- a/recipe_engine/unittests/run_test.py
+++ b/recipe_engine/unittests/run_test.py
@@ -110,7 +110,7 @@ class RunTest(unittest.TestCase):
def test_trigger(self):
subp = subprocess.Popen(
- self._run_cmd('engine_tests/trigger'),
+ self._run_cmd('step:tests/trigger'),
stdout=subprocess.PIPE)
stdout, _ = subp.communicate()
self.assertEqual(0, subp.returncode)
@@ -123,7 +123,7 @@ class RunTest(unittest.TestCase):
"""Tests that trigger still happens even if running the command fails."""
subp = subprocess.Popen(
self._run_cmd(
- 'engine_tests/trigger', properties={'command': ['na-huh']}),
+ 'step:tests/trigger', properties={'command': ['na-huh']}),
stdout=subprocess.PIPE)
stdout, _ = subp.communicate()
self.assertRegexpMatches(stdout, r'(?m)^@@@STEP_TRIGGER@(.*)@@@$')
@@ -142,7 +142,7 @@ class RunTest(unittest.TestCase):
try:
subp = subprocess.Popen(
self._run_cmd(
- 'engine_tests/trigger', properties={'command': ['na-huh']},
+ 'step:tests/trigger', properties={'command': ['na-huh']},
engine_args=['--operational-args-path', path]),
stdout=subprocess.PIPE)
stdout, _ = subp.communicate()
@@ -188,7 +188,7 @@ class RunTest(unittest.TestCase):
def test_subannotations(self):
proc = subprocess.Popen(
- self._run_cmd('engine_tests/subannotations'),
+ self._run_cmd('step:tests/subannotations'),
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
stdout, _ = proc.communicate()
« no previous file with comments | « recipe_engine/loader.py ('k') | recipe_modules/step/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698