commit | 28b8f0f67e498622504812faa92bf5de02aaa42e | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@chromium.org> | Fri Sep 22 03:48:06 2023 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Sep 22 03:48:06 2023 |
tree | 08861f8f91d9e8fec5710f45b32c04768dc4aee0 | |
parent | 0c24ff07de3a3e53a2ad072741216bf97bc5d461 [diff] |
chromium-status: merge readmes & convert to markdown Change-Id: I8851492641d4477025ed2fa2d4b656b9db8d7fe8 Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/4881449 Commit-Queue: Mike Frysinger <vapier@chromium.org> Reviewed-by: Joanna Wang <jojwang@chromium.org> Cr-Commit-Position: refs/heads/main@{#59925}
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.