commit | 26b180f7c31596cecb0697d2c57971d2180d9ccb | [log] [tgz] |
---|---|---|
author | Kevin Weng <kweng@google.com> | Mon Apr 06 18:29:38 2020 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Apr 06 18:29:38 2020 |
tree | c1dbc3f58c95811946ed304a042f893205f6458b | |
parent | 7edb11ec6d99eb8ae5114bbf59d071b42027cc2f [diff] |
🚝 Minor comment update for project config Change-Id: If04266d2bf66b9b0597586815eb9ae8a8ed1df04 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/2136307 Reviewed-by: Joanna Wang <jojwang@chromium.org> Commit-Queue: Kevin Weng <kweng@google.com> Cr-Commit-Position: refs/heads/master@{#30323}
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, integrate 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.