Asib27's picture
try 1
065fee7 verified
raw
history blame
1.12 kB
import synthtool as s
from synthtool import gcp
common = gcp.CommonTemplates()
# ----------------------------------------------------------------------------
# Add templated files
# ----------------------------------------------------------------------------
templated_files = common.py_library(
microgenerator=True,
cov_level=99,
unit_test_external_dependencies=["click"],
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"],
)
s.move(templated_files, excludes=[
"docs/multiprocessing.rst",
"README.rst",
".github/workflows/unittest.yml" #remove this exclusion when removing 3.6 from unit test
])
# Change black paths
s.replace(
"noxfile.py",
"""LINT_PATHS =.*""",
"""LINT_PATHS = ["docs", "google_auth_oauthlib", "tests", "noxfile.py", "setup.py"]""",
)
# Change flake8 paths
s.replace(
"noxfile.py",
'session.run\("flake8", "google", "tests"\)',
'session.run("flake8", *LINT_PATHS)',
)
s.replace(
"noxfile.py",
'"--cov=google",',
'"--cov=google_auth_oauthlib",',
)
s.shell.run(["nox", "-s", "blacken"], hide_output=False)