Files
rk35xx-android14/external/python/google-auth-library-python/owlbot.py
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

33 lines
768 B
Python

import synthtool as s
from synthtool import gcp
common = gcp.CommonTemplates()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(unit_cov_level=100, cov_level=100)
s.move(
templated_files / ".kokoro",
excludes=[
"continuous/common.cfg",
"presubmit/common.cfg",
"build.sh",
],
) # just move kokoro configs
s.move(
# needed by samples kokoro jobs
templated_files / ".trampolinerc"
)
assert 1 == s.replace(
".kokoro/docs/docs-presubmit.cfg",
'value: "docs docfx"',
'value: "docs"',
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)