Skip to content

Commit c42fe50

Browse files
committed
update goldens
1 parent 6f66126 commit c42fe50

File tree

7 files changed

+28
-0
lines changed

7 files changed

+28
-0
lines changed

tests/integration/goldens/asset/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/credentials/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/eventarc/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/logging/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/logging_internal/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/redis/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

tests/integration/goldens/redis_selective/noxfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,7 @@ def prerelease_deps(session, protobuf_implementation):
496496
"grpcio-status",
497497
"protobuf",
498498
"proto-plus",
499+
"cryptography", # required by google-auth v3.x
499500
]
500501

501502
for dep in prerel_deps:
@@ -596,6 +597,9 @@ def core_deps_from_source(session, protobuf_implementation):
596597
session.install(dep, "--no-deps", "--ignore-installed")
597598
print(f"Installed {dep}")
598599

600+
# Required by google-auth v3.x
601+
session.install("cryptography")
602+
599603
session.run(
600604
"py.test",
601605
"tests/unit",

0 commit comments

Comments
 (0)