commit | df95dfa5de61bfd598527a147e9d14bb48295ae4 | [log] [tgz] |
---|---|---|
author | Allen Shih <allenshihmc@google.com> | Thu Oct 31 19:18:10 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Oct 31 19:18:10 2024 |
tree | 0b31d32a52618a81b028c2d41f6300ed39869605 | |
parent | 4e440333aa0c75df757e4b221db32149bc7c55c3 [diff] |
UFS: populate racc_enabled_status from HWID server BUG=b:375340010 TEST=make gen TEST=make test Change-Id: I6a34b8a80fb8f574e3f4f42b08b33ab85b3eef17 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5981968 Auto-Submit: Allen Shih <allenshihmc@chromium.org> Reviewed-by: Xixuan Wu <xixuan@google.com> Commit-Queue: Allen Shih <allenshihmc@chromium.org> Cr-Commit-Position: refs/heads/main@{#69543}
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.