Index: scripts/slave/recipes/infra/infra_repo_trybot.py |
diff --git a/scripts/slave/recipes/infra/infra_repo_trybot.py b/scripts/slave/recipes/infra/infra_repo_trybot.py |
index a4a7ba5e6d7e18324eaadea9ca6310ceab4584db..bbb33dbfeb94a3460a075518ccb19b3b7f88a601 100644 |
--- a/scripts/slave/recipes/infra/infra_repo_trybot.py |
+++ b/scripts/slave/recipes/infra/infra_repo_trybot.py |
@@ -49,9 +49,12 @@ def RunSteps(api): |
api.python('python tests', 'test.py', ['test'], cwd=api.path['checkout']) |
- api.python( |
- 'recipe tests', api.path['checkout'].join('recipes', 'recipes.py'), |
- ['simulation_test', 'test']) |
+ # TODO(phajdan.jr): should we make recipe tests run on other platforms? |
+ if api.platform.is_linux and api.platform.bits == 64: |
+ api.python( |
+ 'recipe tests', api.path['checkout'].join('recipes', 'recipes.py'), |
+ ['simulation_test', 'test']) |
+ |
api.python( |
'recipe lint', api.path['checkout'].join('recipes', 'recipes.py'), |
['lint']) |