Skip to content

Commit 9d5d5f2

Browse files
authored
Merge branch 'master' into dlp
2 parents b53e94d + 4fb6a39 commit 9d5d5f2

File tree

493 files changed

+17047
-9964
lines changed

Some content is hidden

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

493 files changed

+17047
-9964
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,11 @@ composer/* @tswast
1717
# Gus Class is the primary maintainer of the IoT samples.
1818
iot/* @gguuss
1919

20-
# Alix Hamilton is the primary maintainer of the Jupyter notebook samples
20+
# Alix Hamilton is the primary maintainer of the Jupyter notebook samples.
2121
notebooks/* @alixhami
22+
23+
# Torry Yang is the primary maintainer of the Tables samples.
24+
/tables/ @sirtorry
25+
26+
# Tianzi Cai is the primary maintainer of the Pub/Sub samples.
27+
/pubsub/ @anguillanneuf

.github/blunderbuss.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ assign_issues:
33
- dmahugh
44
- kurtisvg
55
- leahecole
6+
- gguuss
7+
- crwilcox
68
assign_prs:
79
- busunkim96
810
- dmahugh
911
- kurtisvg
1012
- leahecole
13+
- gguuss
14+
- crwilcox

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ credentials.dat
2626
*sponge_log.xml
2727
.DS_store
2828
env/
29+
.idea

.kokoro/common.cfg

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

.kokoro/lint/common.cfg

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# Format: //devtools/kokoro/config/proto/build.proto
16+
17+
# Configure the docker image for kokoro-trampoline.
18+
env_vars: {
19+
key: "TRAMPOLINE_IMAGE"
20+
value: "gcr.io/cloud-devrel-kokoro-resources/python"
21+
}
22+
23+
# Download trampoline resources.
24+
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
25+
26+
# Use the trampoline script to run in docker.
27+
build_file: "python-docs-samples/.kokoro/trampoline.sh"
28+
29+
# Download secrets from Cloud Storage.
30+
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
31+
32+
# Copy results for Resultstore
33+
action {
34+
define_artifacts {
35+
regex: "**/*sponge_log.xml"
36+
}
37+
}
38+
39+
# Specify which tests to run
40+
env_vars: {
41+
key: "RUN_TESTS_SESSION"
42+
value: "lint"
43+
}

.kokoro/lint/continuous.cfg

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2020 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# Format: //devtools/kokoro/config/proto/build.proto
16+
17+
# Tell the trampoline which build file to use.
18+
env_vars: {
19+
key: "TRAMPOLINE_BUILD_FILE"
20+
value: "github/python-docs-samples/.kokoro/tests/run_tests.sh"
21+
}

.kokoro/lint/periodic.cfg

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2020 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# Format: //devtools/kokoro/config/proto/build.proto
16+
17+
# Tell the trampoline which build file to use.
18+
env_vars: {
19+
key: "TRAMPOLINE_BUILD_FILE"
20+
value: "github/python-docs-samples/.kokoro/tests/run_tests.sh"
21+
}

.kokoro/lint/presubmit.cfg

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# Format: //devtools/kokoro/config/proto/build.proto
16+
17+
# Tell the trampoline which build file to use.
18+
env_vars: {
19+
key: "TRAMPOLINE_BUILD_FILE"
20+
value: "github/python-docs-samples/.kokoro/tests/run_tests_only_diff.sh"
21+
}

.kokoro/presubmit_tests_appengine.cfg

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

.kokoro/presubmit_tests_appengine_flexible.cfg

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

0 commit comments

Comments
 (0)