commit | 332c7526ce5e51861fc4709a1db345ac4cc69d88 | [log] [tgz] |
---|---|---|
author | Fumitoshi Ukai <ukai@google.com> | Mon Jun 24 09:02:46 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jun 24 09:02:46 2024 |
tree | f9ace0f146977978f13a7142244c2b34861bb579 | |
parent | 79c43edac7db2692a32763396ddcfb9ba3a50f3e [diff] |
siso: add resultstore support For now, it uploads invocation only. example> https://btx.cloud.google.com/invocations/22c04416-15a7-46a2-988a-480738ccf8c3/details Bug: b/329564182 Change-Id: Ia3e776a0a9a38cc8dd017b6682d9250c9f7a80b3 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5642322 Reviewed-by: Junji Watanabe <jwata@google.com> Commit-Queue: Fumitoshi Ukai <ukai@google.com> Reviewed-by: Takuto Ikuta <tikuta@chromium.org> Auto-Submit: Fumitoshi Ukai <ukai@google.com> Cr-Commit-Position: refs/heads/main@{#66368}
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.