commit | 48b412e10d4a08d41564d84fcb01ea4b543e9baf | [log] [tgz] |
---|---|---|
author | Julio Hurtado <juahurta@google.com> | Wed Oct 30 18:02:45 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Oct 30 18:02:45 2024 |
tree | 21c9ee98ef6fc27f7d16b0a76610fd1d783b74ca | |
parent | 9d5170d34141e5a9c42875e3889bc95632397391 [diff] |
ctpv2: remove parentID BUG=b:376428233 TEST=None Change-Id: If3722d8850ba5f45dfe2ce54d0c18e7b9c1de1da Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5979800 Auto-Submit: Julio Hurtado <juahurta@google.com> Reviewed-by: Azizur Rahman <azrahman@google.com> Commit-Queue: Azizur Rahman <azrahman@google.com> Cr-Commit-Position: refs/heads/main@{#69500}
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.