Skip to content

Commit 5fa0906

Browse files
committed
disable 3.8 testing (pandas incompat)
1 parent 9a05126 commit 5fa0906

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright 2021 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+
TEST_CONFIG_OVERRIDE = {
16+
# You can opt out from the test for specific Python versions.
17+
"ignored_versions": ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11"],
18+
# Old samples are opted out of enforcing Python type hints
19+
# All new samples should feature them
20+
"enforce_type_hints": True,
21+
# An envvar key for determining the project id to use. Change it
22+
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
23+
# build specific Cloud project. You can also use your own string
24+
# to use your own Cloud project.
25+
"gcloud_project_env": "GOOGLE_CLOUD_PROJECT",
26+
# 'gcloud_project_env': 'BUILD_SPECIFIC_GCLOUD_PROJECT',
27+
# If you need to use a specific version of pip,
28+
# change pip_version_override to the string representation
29+
# of the version number, for example, "20.2.4"
30+
"pip_version_override": None,
31+
# A dictionary you want to inject into your test. Don't put any
32+
# secrets here. These values will override predefined values.
33+
"envs": {},
34+
}

0 commit comments

Comments
 (0)