From 045a55d8bdcd70bb19d5faef66a64574538485eb Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Thu, 8 Nov 2018 16:01:55 -0500 Subject: [PATCH] Add 'mock' to unit test dependencies for autogen libs. (#6402) In anticipation of landing https://github.com/googleapis/gapic-generator/pull/2407. --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 4923d0ee..0f60d185 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ def default(session): # Install all test dependencies, then install this package in-place. - session.install('pytest') + session.install('pytest', 'mock') for local_dep in LOCAL_DEPS: session.install('-e', local_dep) session.install('-e', '.')