Skip to content
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
UNIT_TEST_STANDARD_DEPENDENCIES = [
"mock",
"mock==5.0.0",
"asyncmock",
"pytest",
"pytest-cov",
Expand All @@ -49,7 +49,7 @@

SYSTEM_TEST_PYTHON_VERSIONS = ["3.10"]
SYSTEM_TEST_STANDARD_DEPENDENCIES = [
"mock",
"mock==5.0.0",
"pytest",
"google-cloud-testutils",
]
Expand Down
3 changes: 3 additions & 0 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@
s.replace(
"noxfile.py", r'"blacken",', '\g<0>\n "mypy",',
)
s.replace(
"noxfile.py", r'"mock"', '"mock==5.0.0"',
)
s.replace(
"noxfile.py",
r"nox\.options\.error_on_missing_interpreters = True",
Expand Down