commit | 7e3c1b5d16ac5f0055b1fefbe9b1c03ebf4ccc91 | [log] [tgz] |
---|---|---|
author | Fumitoshi Ukai <ukai@google.com> | Wed Jun 19 23:42:05 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Jun 19 23:42:05 2024 |
tree | 4c4ded02c5a6a47495b106bc9479551180388efe | |
parent | 33d0ad39fc1534a172a9607344f108f12f31d1d8 [diff] |
siso: use %q for depfile, dep input Change-Id: Ib52e8a9f0ce1f6c87b330369f03aee62147f344f Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5642316 Reviewed-by: Philipp Wollermann <philwo@google.com> Auto-Submit: Fumitoshi Ukai <ukai@google.com> Commit-Queue: Fumitoshi Ukai <ukai@google.com> Cr-Commit-Position: refs/heads/main@{#66304}
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.