Skip to content

Commit

Permalink
chore: new owl bot post processor docker image (#164)
Browse files Browse the repository at this point in the history
gcr.io/repo-automation-bots/owlbot-python:latest@sha256:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479
  • Loading branch information
gcf-owl-bot[bot] authored May 28, 2021
1 parent 87c6d72 commit ee743ee
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/google-cloud-automl/.github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docker:
image: gcr.io/repo-automation-bots/owlbot-python:latest
digest: sha256:4c981a6b6f2b8914a448d7b3a01688365be03e3ed26dfee399a6aa77fb112eaa
digest: sha256:3c3a445b3ddc99ccd5d31edc4b4519729635d20693900db32c4f587ed51f7479
6 changes: 4 additions & 2 deletions packages/google-cloud-automl/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx==4.0.1", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand All @@ -200,7 +200,9 @@ def docfx(session):
"""Build the docfx yaml files for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml")
session.install(
"sphinx==4.0.1", "alabaster", "recommonmark", "gcp-sphinx-docfx-yaml"
)

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand Down
4 changes: 2 additions & 2 deletions packages/google-cloud-automl/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
# regex replaces are a brittle temporary solution.
s.replace(
"noxfile.py",
"""'-W', # warnings as errors
\s+'-T', \# show full traceback on exception""",
""""-W", # warnings as errors
\s+"-T", \# show full traceback on exception""",
""""-T", # show full traceback on exception""")

s.shell.run(["nox", "-s", "blacken"], hide_output=False)
8 changes: 7 additions & 1 deletion packages/google-cloud-automl/samples/beta/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
# to use your own Cloud project.
'gcloud_project_env': 'GOOGLE_CLOUD_PROJECT',
# 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT',

# If you need to use a specific version of pip,
# change pip_version_override to the string representation
# of the version number, for example, "20.2.4"
"pip_version_override": None,
# A dictionary you want to inject into your test. Don't put any
# secrets here. These values will override predefined values.
'envs': {},
Expand Down Expand Up @@ -170,6 +173,9 @@ def blacken(session: nox.sessions.Session) -> None:


def _session_tests(session: nox.sessions.Session, post_install: Callable = None) -> None:
if TEST_CONFIG["pip_version_override"]:
pip_version = TEST_CONFIG["pip_version_override"]
session.install(f"pip=={pip_version}")
"""Runs py.test for a particular project."""
if os.path.exists("requirements.txt"):
if os.path.exists("constraints.txt"):
Expand Down
8 changes: 7 additions & 1 deletion packages/google-cloud-automl/samples/snippets/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
# to use your own Cloud project.
'gcloud_project_env': 'GOOGLE_CLOUD_PROJECT',
# 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT',

# If you need to use a specific version of pip,
# change pip_version_override to the string representation
# of the version number, for example, "20.2.4"
"pip_version_override": None,
# A dictionary you want to inject into your test. Don't put any
# secrets here. These values will override predefined values.
'envs': {},
Expand Down Expand Up @@ -170,6 +173,9 @@ def blacken(session: nox.sessions.Session) -> None:


def _session_tests(session: nox.sessions.Session, post_install: Callable = None) -> None:
if TEST_CONFIG["pip_version_override"]:
pip_version = TEST_CONFIG["pip_version_override"]
session.install(f"pip=={pip_version}")
"""Runs py.test for a particular project."""
if os.path.exists("requirements.txt"):
if os.path.exists("constraints.txt"):
Expand Down
8 changes: 7 additions & 1 deletion packages/google-cloud-automl/samples/tables/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
# to use your own Cloud project.
'gcloud_project_env': 'GOOGLE_CLOUD_PROJECT',
# 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT',

# If you need to use a specific version of pip,
# change pip_version_override to the string representation
# of the version number, for example, "20.2.4"
"pip_version_override": None,
# A dictionary you want to inject into your test. Don't put any
# secrets here. These values will override predefined values.
'envs': {},
Expand Down Expand Up @@ -170,6 +173,9 @@ def blacken(session: nox.sessions.Session) -> None:


def _session_tests(session: nox.sessions.Session, post_install: Callable = None) -> None:
if TEST_CONFIG["pip_version_override"]:
pip_version = TEST_CONFIG["pip_version_override"]
session.install(f"pip=={pip_version}")
"""Runs py.test for a particular project."""
if os.path.exists("requirements.txt"):
if os.path.exists("constraints.txt"):
Expand Down

0 comments on commit ee743ee

Please sign in to comment.