Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium/steps.py |
| diff --git a/scripts/slave/recipe_modules/chromium/steps.py b/scripts/slave/recipe_modules/chromium/steps.py |
| index 5afbc0e96ec1974191399cb7d468e5afa90deb20..1971c2817e22ac6399156080759717a25fe1b07b 100644 |
| --- a/scripts/slave/recipe_modules/chromium/steps.py |
| +++ b/scripts/slave/recipe_modules/chromium/steps.py |
| @@ -497,6 +497,20 @@ class MojoPythonTests(PythonBasedTest): # pylint: disable=W0232 |
| **kwargs) |
| +class MojoPythonBindingsTests(PythonBasedTest): # pylint: disable=W0232 |
| + name = 'mojo_python_bindings_tests' |
| + |
| + def run_step(self, api, suffix, cmd_args, **kwargs): |
| + args = list(cmd_args or []) |
|
Dirk Pranke
2014/09/06 00:28:28
This list() call should not be necessary (I don't
qsr
2014/09/08 08:43:20
Done.
|
| + args.extend(['--build-dir', api.chromium.c.build_dir]) |
| + return api.python( |
| + self._step_name(suffix), |
| + api.path['checkout'].join('mojo', 'tools', |
| + 'run_mojo_python_bindings_tests.py'), |
| + args, |
| + **kwargs) |
| + |
| + |
| class PrintPreviewTests(PythonBasedTest): # pylint: disable=W032 |
| name = 'print_preview_tests' |