aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/run/api.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipe_modules/run/api.py')
-rw-r--r--infra/bots/recipe_modules/run/api.py15
1 files changed, 5 insertions, 10 deletions
diff --git a/infra/bots/recipe_modules/run/api.py b/infra/bots/recipe_modules/run/api.py
index b487a75d9c..3c989802e0 100644
--- a/infra/bots/recipe_modules/run/api.py
+++ b/infra/bots/recipe_modules/run/api.py
@@ -61,21 +61,16 @@ class SkiaStepApi(recipe_api.RecipeApi):
def readfile(self, filename, *args, **kwargs):
"""Convenience function for reading files."""
name = kwargs.pop('name', 'read %s' % self.m.path.basename(filename))
- return self.m.file.read(name, filename, infra_step=True, *args, **kwargs)
+ return self.m.file.read_text(name, filename, *args, **kwargs)
def writefile(self, filename, contents):
"""Convenience function for writing files."""
- return self.m.file.write('write %s' % self.m.path.basename(filename),
- filename, contents, infra_step=True)
+ return self.m.file.write_text('write %s' % self.m.path.basename(filename),
+ filename, contents)
def rmtree(self, path):
- """Wrapper around api.file.rmtree with environment fix."""
- env = {'PYTHONPATH': str(self.m.path['start_dir'].join(
- 'skia', 'infra', 'bots', '.recipe_deps', 'build', 'scripts'))}
- with self.m.env(env):
- self.m.file.rmtree(self.m.path.basename(path),
- path,
- infra_step=True)
+ """Wrapper around api.file.rmtree."""
+ self.m.file.rmtree('rmtree %s' % self.m.path.basename(path), path)
def __call__(self, steptype, name, abort_on_failure=True,
fail_build_on_failure=True, **kwargs):