Skip to content

Commit e672577

Browse files
committed
test: temporarily skip django-google-spanner system tests
1 parent 6b697d7 commit e672577

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

packages/django-google-spanner/noxfile.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -212,14 +212,15 @@ def system_test(session, django_version="3.2"):
212212

213213
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
214214
def 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

0 commit comments

Comments
 (0)