From 687102156f254808702fb8c544bfd7833578c9e5 Mon Sep 17 00:00:00 2001 From: Don Kendall Date: Wed, 3 Jun 2026 13:39:05 -0400 Subject: [PATCH] [CI] test-migration: install google-auth for cloud_storage_google/google_gmail MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit geoip2 already covered website; cloud_storage_google (and google_gmail) declare google-auth. google-auth's runtime deps are cachetools/pyasn1-modules/rsa — it does NOT pull cryptography, so it won't disturb the runner's pyOpenSSL. (auth_ldap's python-ldap, which needs apt build libs, is added separately if/when it's marked.) --- .github/workflows/test-migration-enriched.yml | 1 + .github/workflows/test-migration.yml | 6 +----- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-migration-enriched.yml b/.github/workflows/test-migration-enriched.yml index 1323b9975f9d..9f28c89a482c 100644 --- a/.github/workflows/test-migration-enriched.yml +++ b/.github/workflows/test-migration-enriched.yml @@ -126,6 +126,7 @@ jobs: pip install coverage # this is for account_peppol pip install phonenumbers + pip install geoip2 google-auth - name: Test data run: | if test -n "$(ls openupgrade/openupgrade_scripts/scripts/*/tests/data*.py 2> /dev/null)"; then diff --git a/.github/workflows/test-migration.yml b/.github/workflows/test-migration.yml index 3673a1ea8223..0a7ebcefe57f 100644 --- a/.github/workflows/test-migration.yml +++ b/.github/workflows/test-migration.yml @@ -126,11 +126,7 @@ jobs: pip install coverage # this is for account_peppol pip install phonenumbers - # this is for website, which is marked Done and declares geoip2. - # (Only geoip2: google-auth / python-ldap pull a newer cryptography - # that breaks the runner's pre-installed pyOpenSSL — add those only - # when cloud_storage_google / google_gmail / auth_ldap get marked.) - pip install geoip2 + pip install geoip2 google-auth - name: Test data run: | if test -n "$(ls openupgrade/openupgrade_scripts/scripts/*/tests/data*.py 2> /dev/null)"; then