From be64661eed4180fb343d08e9d0a02d90284cfb4f Mon Sep 17 00:00:00 2001 From: Lingqing Gan Date: Wed, 7 Jan 2026 16:41:26 -0800 Subject: [PATCH 1/2] test: Add 'cryptography' to system test extras for google-cloud-bigquery-storage Fixes test failures such as https://btx.cloud.google.com/invocations/046f57c8-7637-4cc8-9cf3-02a45fb1b063 --- packages/google-cloud-bigquery-storage/noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/google-cloud-bigquery-storage/noxfile.py b/packages/google-cloud-bigquery-storage/noxfile.py index 25e0b39cd444..204fbe038134 100644 --- a/packages/google-cloud-bigquery-storage/noxfile.py +++ b/packages/google-cloud-bigquery-storage/noxfile.py @@ -84,6 +84,7 @@ SYSTEM_TEST_LOCAL_DEPENDENCIES: List[str] = [] SYSTEM_TEST_DEPENDENCIES: List[str] = [] SYSTEM_TEST_EXTRAS: List[str] = [ + "cryptography", "fastavro", "pandas", "pyarrow", From 9d82b0cbcfc701fb6c2a317fd5e945a5fc7afc90 Mon Sep 17 00:00:00 2001 From: Lingqing Gan Date: Wed, 7 Jan 2026 16:46:10 -0800 Subject: [PATCH 2/2] Add cachetools to unit test dependencies --- packages/google-cloud-bigquery-storage/noxfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/google-cloud-bigquery-storage/noxfile.py b/packages/google-cloud-bigquery-storage/noxfile.py index 204fbe038134..ac96b51e7a7b 100644 --- a/packages/google-cloud-bigquery-storage/noxfile.py +++ b/packages/google-cloud-bigquery-storage/noxfile.py @@ -55,6 +55,7 @@ PACKAGE_NAME = "google-cloud-bigquery-storage" UNIT_TEST_STANDARD_DEPENDENCIES = [ + "cachetools", "mock", "asyncmock", "pytest",