commit | 8771dec6527f07954301056d713538bdb64517ce | [log] [tgz] |
---|---|---|
author | Greg NISBET <gregorynisbet@google.com> | Mon Jul 25 23:21:37 2022 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jul 25 23:21:37 2022 |
tree | 5a21862391f3a30e7227cb2f3b667ed1374d39bf | |
parent | 6a4e595cbd6036d6ae3e2719cc835fba61aa30f8 [diff] |
[crosadm] Remove RolloutPermille field. The RolloutPermille field is deprecated in favor of ProdPermille and LatestPermille. Once the Paris migration is complete, the non-deprecated fields will still exist and will be used to control how much of the prod traffic goes to the canary "latest" vs prod "prod". BUG=b:215550098 TEST=make test Change-Id: Ic3f6cf5fba4747f0be8e320679af3384033ce889 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/3782209 Reviewed-by: Gowri Denduluri <gowriden@google.com> Commit-Queue: Gregory Nisbet <gregorynisbet@google.com> Cr-Commit-Position: refs/heads/main@{#50547}
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.