commit | a9013efa717b7dffe74cd44a85142ba3b2809f7a | [log] [tgz] |
---|---|---|
author | YJ Lee <yunjunlee@chromium.org> | Fri Sep 22 09:26:38 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Sep 22 09:26:38 2023 |
tree | a84798142ece79064cf806f14b7f279da249785a | |
parent | de5a2c055d476fbf8f4eef3e584ef3d614cd5ea2 [diff] |
recovery: Update hostname of XMLRPC call. Update the hostname and logging. BUG=b:287704264 TEST=go build && go test Change-Id: I9259da342e92ca46299f0903909eb728660a04f5 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/4875906 Reviewed-by: Otabek Kasimov <otabek@google.com> Reviewed-by: Eugene Low <elow@google.com> Commit-Queue: YJ Lee <yunjunlee@chromium.org> Reviewed-by: Yang Yang <echoyang@chromium.org> Cr-Commit-Position: refs/heads/main@{#59929}
Welcome to the Chrome Infra repository!
Wondering where to start? Check out General Chrome Infrastructure documentation. In particular, to check out this repo and the rest of the infrastructure code, follow the instructions here. The rest of this page is specific to this repo.
sys.path
modifications.git push origin <updated hash>:deployed
git push
commandIf you've added a new module, run your tests with test.py:
*_test.py
files to this directory.Double-check that your tests are getting picked up when you want them to be: ./test.py test <path-to-package>
.
Tests still not getting picked up by test.py? Double-check to make sure you have __init__.py
files in each directory of your module so Python recognizes it as a package.
The preferred style is PEP8 with two-space indent; that is, the Chromium Python style, except functions use lowercase_with_underscores
. Use yapf (git cl format
) to autoformat new code.