Home | History | Annotate | Download | only in infra

Lines Matching refs:api

20 def RunSteps(api):
21 api.vars.setup()
22 api.core.checkout_steps()
23 api.infra.update_go_deps()
26 infra_tests = api.vars.skia_dir.join(
28 with api.step.context({'cwd': api.vars.skia_dir, 'env': api.infra.go_env}):
29 api.step('infra_tests', cmd=['python', infra_tests])
32 def GenTests(api):
34 api.test('infra_tests') +
35 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
46 api.test('failed_one_update') +
47 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
55 api.step_data('update go pkgs', retcode=1)
59 api.test('failed_all_updates') +
60 api.properties(buildername='Housekeeper-PerCommit-InfraTests',
68 api.step_data('update go pkgs', retcode=1) +
69 api.step_data('update go pkgs (attempt 2)', retcode=1) +
70 api.step_data('update go pkgs (attempt 3)', retcode=1) +
71 api.step_data('update go pkgs (attempt 4)', retcode=1) +
72 api.step_data('update go pkgs (attempt 5)', retcode=1)