Skip to content

Commit

Permalink
chore: new owl bot post processor docker image (#94)
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] committed May 22, 2021
1 parent ec1dfc4 commit cb7e224
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scheduler/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

0 comments on commit cb7e224

Please sign in to comment.