Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit 7e793cc

Browse files
committed
build: use generic python3 in sample scripts instead of python3.10
1 parent e3ba501 commit 7e793cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.kokoro/test-samples-impl.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export PYTHONUNBUFFERED=1
3535
env | grep KOKORO
3636

3737
# Install nox
38-
python3.10 -m pip install --upgrade --quiet nox
38+
python3 -m pip install --upgrade --quiet nox
3939

4040
# Use secrets acessor service account to get secrets
4141
if [[ -f "${KOKORO_GFILE_DIR}/secrets_viewer_service_account.json" ]]; then
@@ -88,7 +88,7 @@ for file in samples/**/requirements.txt; do
8888
echo "------------------------------------------------------------"
8989

9090
# Use nox to execute the tests for the project.
91-
python3.10 -m nox -s "$RUN_TESTS_SESSION"
91+
python3 -m nox -s "$RUN_TESTS_SESSION"
9292
EXIT=$?
9393

9494
# If this is a periodic build, send the test log to the FlakyBot.

0 commit comments

Comments
 (0)