commit | e714c0efba4fbbab0b548c2807e75e2875836610 | [log] [tgz] |
---|---|---|
author | Josip Sokcevic <sokcevic@chromium.org> | Fri Jun 14 04:56:38 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Fri Jun 14 04:56:38 2024 |
tree | 76a662851fb6efde7a24a29feec13678f9d5f94c | |
parent | 812f4340880dc325a8b13fa7facb05a77175e3bd [diff] |
Add README.chromium file to ninja package README.chromium file is being removed from the chromium/src Git repository in https://crrev.com/c/5605693. This effectively adds it back for chromium/src gclient checkout. Information about version is missing so v0 is hardcoded. Bug: 347028366 Change-Id: Ic2c34b563be7cf9cb8f006ce52cf056933f2b3ef Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/5630769 Auto-Submit: Josip Sokcevic <sokcevic@chromium.org> Commit-Queue: Chenlin Fan <fancl@chromium.org> Reviewed-by: Chenlin Fan <fancl@chromium.org> Reviewed-by: Rachael Newitt <renewitt@google.com> Cr-Commit-Position: refs/heads/main@{#66228}
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.