commit | 788e4ce8285d825561d13153c1926474822ab8f0 | [log] [tgz] |
---|---|---|
author | Greg Nisbet <gregorynisbet@google.com> | Fri Feb 02 00:48:39 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Feb 02 00:48:39 2024 |
tree | 7dd120139addd66537646ed9dbe8e4dca3fcea34 | |
parent | b05931d23ce8d8030320a374fa58016fd4c40b9d [diff] |
[fleetcost] Update cost estimate proto to use money type. For more information, see the fleet cost design doc, go/fleet-cost-design. BUG=b:321105865 TEST=does it compile Change-Id: Ice40040ed8474a5b9088f921ac52c7f49c28f965 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5260217 Reviewed-by: Deniz Kara <denizkara@google.com> Commit-Queue: Gregory Nisbet <gregorynisbet@google.com> Cr-Commit-Position: refs/heads/main@{#62788}
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.