Skip to content

Commit d66aa83

Browse files
committed
Merge remote-tracking branch 'origin/demosite-app-recaptcha' into demosite-app-recaptcha
2 parents 90edcee + dd77c2e commit d66aa83

File tree

52 files changed

+55
-83
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+55
-83
lines changed

.kokoro/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ RUN wget --no-check-certificate -O /tmp/get-pip.py 'https://bootstrap.pypa.io/ge
156156
# https://github.com/docker-library/python/pull/100
157157
&& [ "$(pip list |tac|tac| awk -F '[ ()]+' '$1 == "pip" { print $2; exit }')" = "$PYTHON_PIP_VERSION" ]
158158

159-
# Ensure Pip for all python3 versions
159+
# Ensure Pip for all python3 versions.
160160
RUN python3.9 /tmp/get-pip.py
161161
RUN python3.8 /tmp/get-pip.py
162162
RUN python3.7 /tmp/get-pip.py

.kokoro/lint/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,3 @@ env_vars: {
4444
key: "RUN_TESTS_SESSION"
4545
value: "lint"
4646
}
47-
48-
env_vars: {
49-
key: "TRAMPOLINE_DOCKERFILE"
50-
value: ".kokoro/docker/Dockerfile"
51-
}

.kokoro/python2.7/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,3 @@ env_vars: {
5252
key: "BUILD_SPECIFIC_GCLOUD_PROJECT"
5353
value: "python-docs-samples-tests"
5454
}
55-
56-
env_vars: {
57-
key: "TRAMPOLINE_DOCKERFILE"
58-
value: ".kokoro/docker/Dockerfile"
59-
}

.kokoro/python3.10/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,3 @@ env_vars: {
5959
key: "NUM_TEST_WORKERS"
6060
value: "10"
6161
}
62-
63-
env_vars: {
64-
key: "TRAMPOLINE_DOCKERFILE"
65-
value: ".kokoro/docker/Dockerfile"
66-
}

.kokoro/python3.7/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,3 @@ env_vars: {
5959
key: "NUM_TEST_WORKERS"
6060
value: "10"
6161
}
62-
63-
env_vars: {
64-
key: "TRAMPOLINE_DOCKERFILE"
65-
value: ".kokoro/docker/Dockerfile"
66-
}

.kokoro/python3.8/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,3 @@ env_vars: {
5959
key: "NUM_TEST_WORKERS"
6060
value: "10"
6161
}
62-
63-
env_vars: {
64-
key: "TRAMPOLINE_DOCKERFILE"
65-
value: ".kokoro/docker/Dockerfile"
66-
}

.kokoro/python3.9/common.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,3 @@ env_vars: {
5959
key: "NUM_TEST_WORKERS"
6060
value: "10"
6161
}
62-
63-
env_vars: {
64-
key: "TRAMPOLINE_DOCKERFILE"
65-
value: ".kokoro/docker/Dockerfile"
66-
}

.trampolinerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if [[ -z "${TRAMPOLINE_IMAGE:-}" ]]; then
4747
fi
4848

4949
if [[ -z "${TRAMPOLINE_DOCKERFILE:-}" ]]; then
50-
TRAMPOLINE_DOCKERFILE=".kokoro/docker/Dockerfile"
50+
TRAMPOLINE_DOCKERFILE=""
5151
fi
5252

5353
if [[ -z "${RUN_TESTS_SESSION:-}" ]]; then

appengine/flexible/websockets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Flask==1.1.4 # it seems like Flask-sockets doesn't play well with 2.0+
22
Flask-Sockets==0.2.1
33
gunicorn==20.1.0
44
requests==2.27.1
5-
markupsafe==2.0.1
5+
markupsafe===2.0.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# pin pytest to 4.6.11 for Python2.
22
pytest==4.6.11; python_version < '3.0'
3-
mock==3.0.5; python_version < '3.0'
3+
mock===3.0.5; python_version < '3.0'

0 commit comments

Comments
 (0)