File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
packages/django-google-spanner Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -212,14 +212,15 @@ def system_test(session, django_version="3.2"):
212212
213213@nox .session (python = SYSTEM_TEST_PYTHON_VERSIONS )
214214def system (session ):
215+ # TODO(https://github.com/googleapis/google-cloud-python/issues/16099):
216+ # System tests were disabled in the split repo to speed up the build process.
217+ # See: https://github.com/googleapis/python-spanner-django/pull/929.
218+ session .skip ("System tests are temporarily disabled." )
219+
215220 if session .python == "3.7" :
216221 session .skip ("Python 3.7 is no longer supported" )
217- # TODO: Remove this check once support for Python 3.14 is added to Protobuf.
218- if session .python == "3.14" :
219- session .skip ("Protobuf upb implementation is not supported in Python 3.14 yet" )
220- if session .python != "3.13" :
221- print ("System tests with django 3.2" )
222- system_test (session )
222+ print ("System tests with django 3.2" )
223+ system_test (session )
223224 print ("System tests with django 4.2" )
224225 system_test (session , django_version = "4.2" )
225226
You can’t perform that action at this time.
0 commit comments