commit | 1dc37c567472e413fdf512af68063325dc7f2b3d | [log] [tgz] |
---|---|---|
author | Charlotte Chan <lottechan@google.com> | Fri May 30 00:03:49 2025 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri May 30 00:03:49 2025 |
tree | 4e9ebfd848a1688aad5e44e85fbf0ef3801f9459 | |
parent | 3c38b880a2ae34638c1b01673c40bed32e589014 [diff] |
post_process: add usb info request into TRv2 Bug: b/399765201, b/399765200 Change-Id: Idfa80b71b4e84be33b908c08a1383bbf59e3d7ce Test: https://logs.chromium.org/logs/chromeos/buildbucket/cr-buildbucket/8714199525638283649/+/u/cros_test_runner/u/step/49/log/3 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/6550115 Reviewed-by: Jason Kusuma <jkusuma@google.com> Reviewed-by: Chris DeLaGarza <cdelagarza@google.com> Commit-Queue: Charlotte Chan <lottechan@google.com> Cr-Commit-Position: refs/heads/main@{#73952}
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.