Home | History | Annotate | Download | only in recipes

Lines Matching refs:api

21 def RunSteps(api):
22 api.vars.setup()
23 api.core.checkout_steps()
24 api.infra.update_go_deps()
27 repo_name = api.properties['repository'].split('/')[-1]
30 with api.context(cwd=api.vars.checkout_root.join(repo_name),
31 env=api.infra.go_env):
32 api.step('infra_tests', cmd=['make', '-C', 'infra/bots', 'test'])
35 def GenTests(api):
37 api.test('infra_tests') +
38 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
46 api.test('failed_one_update') +
47 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
52 api.step_data('update go pkgs', retcode=1)
56 api.test('failed_all_updates') +
57 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
62 api.step_data('update go pkgs', retcode=1) +
63 api.step_data('update go pkgs (attempt 2)', retcode=1) +
64 api.step_data('update go pkgs (attempt 3)', retcode=1) +
65 api.step_data('update go pkgs (attempt 4)', retcode=1) +
66 api.step_data('update go pkgs (attempt 5)', retcode=1)