[go] Add github.com/google/tink/go to deps.

Other updates repos:
https://code.googlesource.com/gocloud.git/+log/1bdaf93c2599..625aef9b4718
https://chromium.googlesource.com/external/github.com/chromedp/chromedp.git/+log/ac448d20810e..5b511f121cb2
https://chromium.googlesource.com/external/github.com/dgraph-io/badger.git/+log/8cb704777dc5..7d7d7908a001
https://chromium.googlesource.com/external/github.com/go-sql-driver/mysql.git/+log/33267428f77e..bcc459a90641
https://chromium.googlesource.com/external/github.com/golang/groupcache.git/+log/8c9f03a8e57e..41bb18bfe9da
https://chromium.googlesource.com/external/github.com/golang/protobuf.git/+log/af940030a2b7..ae97035608a7
https://chromium.googlesource.com/external/github.com/google/flatbuffers.git/+log/3b7d1e86b46e..1aa0c2f6a9c2
https://chromium.googlesource.com/external/github.com/google/uuid.git/+log/bfb86fa49a73..512b657a4288
https://chromium.googlesource.com/external/github.com/kevinburke/ssh_config.git/+log/4977a11b4351..beb851b6a483
https://chromium.googlesource.com/external/github.com/klauspost/compress.git/+log/2bb69be19106..b2eb8368e62b
https://chromium.googlesource.com/external/github.com/klauspost/cpuid.git/+log/3df0045a253f..c6a3519c8125
https://chromium.googlesource.com/external/github.com/microsoft/go-winio.git/+log/6eac466e5fa3..5516f17a5958
https://chromium.googlesource.com/external/github.com/mostynb/zstdpool-syncpool.git/+log/66ec463a4df3..e1cddd5d58e0
https://chromium.googlesource.com/external/github.com/otiai10/copy.git/+log/51bf83a372fd..46369e3263f1
https://chromium.googlesource.com/external/github.com/sergi/go-diff.git/+log/0a651d56613f..849d7ebc9716
https://go.googlesource.com/build.git/+log/d7600ec889c8..77019952e442
https://go.googlesource.com/net.git/+log/2c4c8ecb7826..0fccb6fa2b5c
https://go.googlesource.com/sys.git/+log/47abb6519492..43e1dd70ce54
https://go.googlesource.com/text.git/+log/e3aa4adf54f6..e328d63cff14
https://go.googlesource.com/tools.git/+log/52cb77242b3b..8c34cc9cafff
https://chromium.googlesource.com/external/github.com/golang/appengine.git/+log/b48684e5a80c..8f83b32138b3
https://chromium.googlesource.com/external/github.com/googleapis/go-genproto.git/+log/3032e8ff099e..865547bb08e2
https://chromium.googlesource.com/external/github.com/grpc/grpc-go.git/+log/702608ffae4d..db8162354529

R=tikuta@chromium.org, tandrii@chromium.org
BUG=712506

Change-Id: I9bc90d464a0bdd6ff18dfa534599327014aea6d9
Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/2801756
Reviewed-by: Takuto Ikuta <tikuta@chromium.org>
Commit-Queue: Vadim Shtayura <vadimsh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#39862}
2 files changed
tree: 9c43f7bc8f2cbbd3e2c6a9a8bd466265cbf30a88
  1. 3pp/
  2. appengine/
  3. appengine_module/
  4. bootstrap/
  5. build/
  6. chromeperf/
  7. cipd/
  8. crdx/
  9. doc/
  10. docker/
  11. glyco/
  12. go/
  13. infra/
  14. node/
  15. packages/
  16. python_pb2/
  17. recipes/
  18. test/
  19. utils/
  20. .gitattributes
  21. .gitignore
  22. .style.yapf
  23. .yapfignore
  24. codereview.settings
  25. CONTRIBUTING.md
  26. DEPS
  27. LICENSE
  28. navbar.md
  29. OWNERS
  30. PRESUBMIT.py
  31. README.md
  32. run.py
  33. test.py
  34. WATCHLISTS
  35. WHITESPACE
README.md

infra.git repository

Testing 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.

Entry points

  • run.py: wrapper script to run programs contained in subdirectories without having to deal with sys.path modifications.
  • test.py: multi-purpose script to run tests.
  • packages/infra_libs/: generally useful functions and classes
  • infra/services/: standalone programs intended to be run as daemons.
  • infra/tools: command-line tools, intended to be run by developers.
  • appengine/: many Chrome-infra-managed AppEngine applications.
  • infra/experimental: for, well, experimental stuff. Once they are stabilized and reviewed, they should be moved in a more permanent place.

Miscellaneous technical stuff

  • bootstrap/: utilities to set up a proper Python virtual environment.
  • infra/path_hacks: submodules of this modules give access to modules in the build/ repository. from infra.path_hacks.common import <stg> is actually getting <stg> from build/scripts/common.
  • utils/: purpose? utils?
  • Need to bump infra/deployed to pick up changes?
    • git push origin <updated hash>:deployed
    • mail chrome-troopers@, include:
      • previously deployed hash (for quick rollback)
      • the hash you just pushed
      • the list of CLs that made this push necessary
      • the output of the git push command

Integrating tests with test.py

If you've added a new module, run your tests with test.py:

  1. Create a .coveragerc file in the root directory of the module you want to test. Take a look at another .coveragerc to see what to include in that.
  2. Create a “test” directory in the root directory of the module you want to test. Move your *_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.

Style

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.