This repository was archived by the owner on Jan 6, 2024. It is now read-only.
File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16
- digest : sha256:b2dc5f80edcf5d4486c39068c9fa11f7f851d9568eea4dcba130f994ea9b5e97
17
- # created: 2022-06-12T16:09:31.61859086Z
16
+ digest : sha256:a5d81b61dfd1a432d3c03f51a25d2e71b37be24da509966d50724aea7c57c5c2
17
+ # created: 2022-07-04T12:33:08.125873124Z
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export PYTHONUNBUFFERED=1
33
33
env | grep KOKORO
34
34
35
35
# Install nox
36
- python3.10 -m pip install --upgrade --quiet nox
36
+ python3.9 -m pip install --upgrade --quiet nox
37
37
38
38
# Use secrets acessor service account to get secrets
39
39
if [[ -f " ${KOKORO_GFILE_DIR} /secrets_viewer_service_account.json" ]]; then
@@ -76,7 +76,7 @@ for file in samples/**/requirements.txt; do
76
76
echo " ------------------------------------------------------------"
77
77
78
78
# Use nox to execute the tests for the project.
79
- python3.10 -m nox -s " $RUN_TESTS_SESSION "
79
+ python3.9 -m nox -s " $RUN_TESTS_SESSION "
80
80
EXIT=$?
81
81
82
82
# If this is a periodic build, send the test log to the FlakyBot.
Original file line number Diff line number Diff line change @@ -376,8 +376,7 @@ def prerelease_deps(session):
376
376
deps = [dep for dep in deps if dep not in prerel_deps ]
377
377
# We use --no-deps to ensure that pre-release versions aren't overwritten
378
378
# by the version ranges in setup.py.
379
- if deps :
380
- session .install (* deps )
379
+ session .install (* deps )
381
380
session .install ("--no-deps" , "-e" , ".[all]" )
382
381
383
382
# Print out prerelease package versions
You can’t perform that action at this time.
0 commit comments