commit | 8d31987929c128be22bfc801f2e5d4d0502891b1 | [log] [tgz] |
---|---|---|
author | Quinten Yearsley <qyearsley@chromium.org> | Wed Jul 20 18:06:10 2022 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Jul 20 18:06:10 2022 |
tree | 0d80340e182067f383ea9b6d9d4bef65d6d946cf | |
parent | d7011a2d032f6973e0a86b266ffcf1e0b84b5b7b [diff] |
tricium spellchecker: Add "patten" to ignorelist This is a personal name and shouldn't be flagged. Bug: 1344879 Change-Id: I06b800d86f9928d23688147c6ee0ed8136f4c8ad Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/3778179 Commit-Queue: Yiwei Zhang <yiwzhang@google.com> Auto-Submit: Quinten Yearsley <qyearsley@chromium.org> Reviewed-by: Yiwei Zhang <yiwzhang@google.com> Cr-Commit-Position: refs/heads/main@{#50424}
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.from infra.path_hacks.common import <stg>
is actually getting <stg>
from build/scripts/common.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.