commit | a891e988fb452903447c76438f8e4f5876b3b44c | [log] [tgz] |
---|---|---|
author | Josip Sokcevic <sokcevic@google.com> | Thu Jun 03 16:48:14 2021 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Jun 03 16:48:14 2021 |
tree | 7bb071e53d6a3acd65870a575c68229dd678a03e | |
parent | b1898a0e9f7f3235ede5e1ca1208b1b47ba42961 [diff] |
Use main branch as default branch for CS repos R=apolito@google.com Change-Id: Ie90d3edeab188a531c94579af817606d1746488d Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/2920794 Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org> Commit-Queue: Josip Sokcevic <sokcevic@google.com> Cr-Commit-Position: refs/heads/master@{#41392}
Testing 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.