commit | 46e22fa075c18fea55af771996e69194d808fb2f | [log] [tgz] |
---|---|---|
author | Julio Hurtado <juahurta@google.com> | Mon Sep 30 20:26:55 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Sep 30 20:26:55 2024 |
tree | d55997ae31381aeb204b6c4fa6f5a1e2fa41953a | |
parent | 70548ec7817bb9d9e6c6c5657be09e577f4745b8 [diff] |
ctpv2: report pass/fail counts to the sub-build output props BUG=b:364892343 TEST=LED (run in comments) Change-Id: Iacaac2bf44c99d4ea5489c4fdfd371514f9263af Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5876419 Auto-Submit: Julio Hurtado <juahurta@google.com> Commit-Queue: Julio Hurtado <juahurta@google.com> Reviewed-by: Azizur Rahman <azrahman@google.com> Cr-Commit-Position: refs/heads/main@{#68784}
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.