Skip to content

Commit 48c0dc0

Browse files
authored
chore: fix the errors while generating gapic (#1503)
* chore: fix the errors while generating gapic * add missing comma
1 parent 7d97a38 commit 48c0dc0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def default(session, install_extras=True):
101101
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
102102
)
103103
# Install all test dependencies, then install this package in-place.
104-
session.install("mock", "pytest", "pytest-cov", "brotli", "-c", constraints_path)
104+
session.install("mock", "pytest", "pytest-cov", "brotli", "grpcio", "grpcio-status", "-c", constraints_path)
105105

106106
if install_extras:
107107
session.install("opentelemetry-api", "opentelemetry-sdk")

owlbot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Exclude autogenerated constraints files for Python 3.7/3.9
4343
"testing/constraints-3.7.txt",
4444
"testing/constraints-3.9.txt",
45+
"tests/unit/__init__.py",
4546
],
4647
)
4748
s.remove_staging_dirs()

0 commit comments

Comments
 (0)