From 1f071109dfe8c05f93879cc7123abd9b61f340e6 Mon Sep 17 00:00:00 2001 From: nicain Date: Mon, 4 Jul 2022 05:25:55 -0700 Subject: [PATCH] fix: Update test-samples-impl.sh python3.6 --> python3.9 (#1476) https://github.com/GoogleCloudPlatform/python-docs-samples/pull/8135/files --- .../gcp/templates/python_library/.kokoro/test-samples-impl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synthtool/gcp/templates/python_library/.kokoro/test-samples-impl.sh b/synthtool/gcp/templates/python_library/.kokoro/test-samples-impl.sh index 8a324c9c7..2c6500cae 100755 --- a/synthtool/gcp/templates/python_library/.kokoro/test-samples-impl.sh +++ b/synthtool/gcp/templates/python_library/.kokoro/test-samples-impl.sh @@ -33,7 +33,7 @@ export PYTHONUNBUFFERED=1 env | grep KOKORO # Install nox -python3.6 -m pip install --upgrade --quiet nox +python3.9 -m pip install --upgrade --quiet nox # Use secrets acessor service account to get secrets if [[ -f "${KOKORO_GFILE_DIR}/secrets_viewer_service_account.json" ]]; then @@ -76,7 +76,7 @@ for file in samples/**/requirements.txt; do echo "------------------------------------------------------------" # Use nox to execute the tests for the project. - python3.6 -m nox -s "$RUN_TESTS_SESSION" + python3.9 -m nox -s "$RUN_TESTS_SESSION" EXIT=$? # If this is a periodic build, send the test log to the FlakyBot.