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

Commit 42bcf47

Browse files
committed
Merge branch 'main' into b_788
2 parents bef1eac + 1ca7973 commit 42bcf47

25 files changed

+228
-309
lines changed

.github/.OwlBot.lock.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16-
digest: sha256:04c35dc5f49f0f503a306397d6d043685f8d2bb822ab515818c4208d7fb2db3a
17-
# created: 2025-01-16T15:24:11.364245182Z
16+
digest: sha256:5581906b957284864632cde4e9c51d1cc66b0094990b27e689132fe5cd036046
17+
# created: 2025-03-04

.github/sync-repo-settings.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,37 @@ branchProtectionRules:
1717
- 'unit_grpc_gcp-3.10'
1818
- 'unit_grpc_gcp-3.11'
1919
- 'unit_grpc_gcp-3.12'
20+
- 'unit_grpc_gcp-3.13'
21+
- 'unit_grpc_gcp-3.14'
2022
- 'unit-3.7'
2123
- 'unit-3.8'
2224
- 'unit-3.9'
2325
- 'unit-3.10'
2426
- 'unit-3.11'
2527
- 'unit-3.12'
28+
- 'unit-3.13'
29+
- 'unit-3.14'
2630
- 'unit_wo_grpc-3.10'
2731
- 'unit_wo_grpc-3.11'
2832
- 'unit_wo_grpc-3.12'
33+
- 'unit_wo_grpc-3.13'
34+
- 'unit_wo_grpc-3.14'
35+
- 'unit_w_prerelease_deps-3.7'
36+
- 'unit_w_prerelease_deps-3.8'
37+
- 'unit_w_prerelease_deps-3.9'
38+
- 'unit_w_prerelease_deps-3.10'
39+
- 'unit_w_prerelease_deps-3.11'
40+
- 'unit_w_prerelease_deps-3.12'
41+
- 'unit_w_prerelease_deps-3.13'
42+
- 'unit_w_prerelease_deps-3.14'
43+
- 'unit_w_async_rest_extra-3.7'
44+
- 'unit_w_async_rest_extra-3.8'
45+
- 'unit_w_async_rest_extra-3.9'
46+
- 'unit_w_async_rest_extra-3.10'
47+
- 'unit_w_async_rest_extra-3.11'
48+
- 'unit_w_async_rest_extra-3.12'
49+
- 'unit_w_async_rest_extra-3.13'
50+
- 'unit_w_async_rest_extra-3.14'
2951
- 'cover'
3052
- 'docs'
3153
- 'docfx'

.github/workflows/unittest.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- "3.11"
2424
- "3.12"
2525
- "3.13"
26+
- "3.14"
2627
exclude:
2728
- option: "_wo_grpc"
2829
python: 3.7
@@ -37,6 +38,7 @@ jobs:
3738
uses: actions/setup-python@v5
3839
with:
3940
python-version: ${{ matrix.python }}
41+
allow-prereleases: true
4042
- name: Install nox
4143
run: |
4244
python -m pip install --upgrade setuptools pip wheel

.kokoro/build.sh

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515

1616
set -eo pipefail
1717

18+
CURRENT_DIR=$(dirname "${BASH_SOURCE[0]}")
19+
1820
if [[ -z "${PROJECT_ROOT:-}" ]]; then
19-
PROJECT_ROOT="github/python-api-core"
21+
PROJECT_ROOT=$(realpath "${CURRENT_DIR}/..")
2022
fi
2123

22-
cd "${PROJECT_ROOT}"
24+
pushd "${PROJECT_ROOT}"
2325

2426
# Disable buffering, so that the logs stream through.
2527
export PYTHONUNBUFFERED=1
@@ -28,10 +30,16 @@ export PYTHONUNBUFFERED=1
2830
env | grep KOKORO
2931

3032
# Setup service account credentials.
31-
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json
33+
if [[ -f "${KOKORO_GFILE_DIR}/service-account.json" ]]
34+
then
35+
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/service-account.json
36+
fi
3237

3338
# Setup project id.
34-
export PROJECT_ID=$(cat "${KOKORO_GFILE_DIR}/project-id.json")
39+
if [[ -f "${KOKORO_GFILE_DIR}/project-id.json" ]]
40+
then
41+
export PROJECT_ID=$(cat "${KOKORO_GFILE_DIR}/project-id.json")
42+
fi
3543

3644
# If this is a continuous build, send the test log to the FlakyBot.
3745
# See https://github.com/googleapis/repo-automation-bots/tree/main/packages/flakybot.
@@ -46,7 +54,7 @@ fi
4654
# If NOX_SESSION is set, it only runs the specified session,
4755
# otherwise run all the sessions.
4856
if [[ -n "${NOX_SESSION:-}" ]]; then
49-
python3 -m nox -s ${NOX_SESSION:-}
57+
python3 -m nox -s ${NOX_SESSION:-}
5058
else
51-
python3 -m nox
59+
python3 -m nox
5260
fi

.kokoro/docker/docs/Dockerfile

Lines changed: 0 additions & 89 deletions
This file was deleted.

.kokoro/docker/docs/requirements.in

Lines changed: 0 additions & 2 deletions
This file was deleted.

.kokoro/docs/common.cfg

Lines changed: 0 additions & 67 deletions
This file was deleted.

.kokoro/docs/docs-presubmit.cfg

Lines changed: 0 additions & 28 deletions
This file was deleted.

.kokoro/docs/docs.cfg

Lines changed: 0 additions & 1 deletion
This file was deleted.

.kokoro/publish-docs.sh

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)