commit | 4c2eae4253c9f742b5c3e3f5e29e38103e66ab1a | [log] [tgz] |
---|---|---|
author | Mostafa Draz <mdraz@google.com> | Mon Jan 15 05:59:04 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jan 15 05:59:04 2024 |
tree | 62b6ee80c148c6f09399d47a361eb4be8fe1f294 | |
parent | 43938078157e3830e6d704a6a2579b0e83c1b0fd [diff] |
luci: fix typescript for Storybook and dist ignore Change-Id: I705a4173332805dbb38b7b2b46d697ea937c0f46 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5196098 Reviewed-by: Weiwei Lin <weiweilin@google.com> Auto-Submit: Mostafa Draz <mdraz@google.com> Commit-Queue: Weiwei Lin <weiweilin@google.com> Cr-Commit-Position: refs/heads/main@{#62340}
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.