Skip to content

Commit 3341286

Browse files
leahecoleloferris
andauthored
exempt some samples from python 3.10 tests (GoogleCloudPlatform#7222)
* remove mmore rogue noxfile * exempt dataflow example from type hint * exempt from 3.10 tests until compatible GoogleCloudPlatform/cloud-debug-python#33 * Add 3.9 support fo appengine/standard_python3/cloud_debugger * Exempt from 3.10 tests until tink-crypto/tink#553 is resolved * remove leftovers from rebase * Update appengine/standard_python3/cloud_debugger/noxfile_config.py Co-authored-by: Lo Ferris <50979514+loferris@users.noreply.github.com>
1 parent 5276962 commit 3341286

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

appengine/standard_python3/cloud_debugger/noxfile_config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
# google-python-cloud-debugger doesn't support Python 3.9.
26-
# https://github.com/GoogleCloudPlatform/cloud-debug-python/issues/22
27-
"ignored_versions": ["2.7", "3.9"],
25+
"ignored_versions": ["2.7", "3.10"],
2826
# Old samples are opted out of enforcing Python type hints
2927
# All new samples should feature them
3028
"enforce_type_hints": False,

cloud-sql/mysql/client-side-encryption/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.6"],
25+
"ignored_versions": ["2.7", "3.6", "3.10"],
2626
# Old samples are opted out of enforcing Python type hints
2727
# All new samples should feature them
2828
"enforce_type_hints": True,

cloud-sql/postgres/client-side-encryption/noxfile_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.6"],
25+
"ignored_versions": ["2.7", "3.6", "3.10"],
2626
# Old samples are opted out of enforcing Python type hints
2727
# All new samples should feature them
2828
"enforce_type_hints": True,

cloud-sql/sql-server/client-side-encryption/noxfile_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222

2323
TEST_CONFIG_OVERRIDE = {
2424
# You can opt out from the test for specific Python versions.
25-
"ignored_versions": ["2.7", "3.6"],
25+
"ignored_versions": ["2.7", "3.6", "3.10"],
2626
# Old samples are opted out of enforcing Python type hints
2727
# All new samples should feature them
28-
"enforce_type_hints": True,
28+
"enforce_type_hints": False,
2929
# An envvar key for determining the project id to use. Change it
3030
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
3131
# build specific Cloud project. You can also use your own string

0 commit comments

Comments
 (0)